Files
i2p.www/i2p2www/pages/blog/index.html

31 lines
850 B
HTML
Raw Normal View History

{% extends "global/layout.html" %}
{% block title %}Blog Index{% endblock %}
{% block headextra %}
<link href="{{ url_for('blog_atom', lang=g.lang) }}" type="application/atom+xml" rel="alternate" title="I2P Blog ATOM Feed" />
{%- endblock %}
{% block content %}
<p>Some descriptive text.</p>
2013-01-09 00:32:32 +00:00
<ul id="posts">
{% for (slug, post) in posts %}
<li>
<article>
<header>
<a href="{{ url_for('blog_post', slug=slug) }}">{{ post.title }}</a>
</header>
{%- if post.excerpt %}
<p>{{ post.excerpt }}</p>
{%- endif %}
<footer>
<ul>
<li>{{ post.date }}</li>
<li>{{ post.author }}</li>
</ul>
</footer>
</article>
</li>
{% endfor %}
</ul>
{%- from "global/macros" import render_pagination with context -%}
{{ render_pagination(pagination) | safe }}
{% endblock %}