2012-09-12 05:08:51 +00:00
|
|
|
{% extends "global/layout.html" %}
|
|
|
|
{% block title %}Blog Index{% endblock %}
|
2012-12-13 21:17:22 +00:00
|
|
|
{% block headextra %}
|
|
|
|
<link href="{{ url_for('blog_atom', lang=g.lang) }}" type="application/atom+xml" rel="alternate" title="I2P Blog ATOM Feed" />
|
|
|
|
{%- endblock %}
|
2012-09-12 05:08:51 +00:00
|
|
|
{% block content %}
|
|
|
|
<p>Some descriptive text.</p>
|
|
|
|
<ul class="infolist">
|
|
|
|
{% for entry in entries -%}
|
2012-09-12 21:15:30 +00:00
|
|
|
<li>{{ entry[1] }} - <a href="{{ url_for('blog_entry', slug=entry[0]) }}">{{ entry[2] }}</a></li>
|
2012-09-12 05:08:51 +00:00
|
|
|
{%- endfor %}
|
|
|
|
</ul>
|
2012-12-14 06:26:21 +00:00
|
|
|
{%- from "global/macros" import render_pagination with context -%}
|
|
|
|
{{ render_pagination(pagination) | safe }}
|
2012-09-12 05:08:51 +00:00
|
|
|
{% endblock %}
|