2012-09-12 05:08:51 +00:00
|
|
|
{% extends "global/layout.html" %}
|
2013-03-26 22:38:24 +00:00
|
|
|
{% block title %}{{ _('Blog') }}{% endblock %}
|
2012-12-13 21:17:22 +00:00
|
|
|
{% block headextra %}
|
2013-01-18 04:36:24 +00:00
|
|
|
<link href="{{ get_url('blog_atom') }}" type="application/atom+xml" rel="alternate" title="{{ _('I2P Blog ATOM Feed') }}" />
|
2012-12-13 21:17:22 +00:00
|
|
|
{%- endblock %}
|
2012-09-12 05:08:51 +00:00
|
|
|
{% block content %}
|
2013-01-09 00:32:32 +00:00
|
|
|
<ul id="posts">
|
2013-01-16 01:41:24 +00:00
|
|
|
{% for (slug, post) in posts %}
|
2013-01-08 01:33:22 +00:00
|
|
|
<li>
|
|
|
|
<article>
|
|
|
|
<header>
|
2013-01-18 03:42:02 +00:00
|
|
|
<a href="{{ get_url('blog_post', slug=slug) }}">{{ post.title }}</a>
|
2013-01-08 01:33:22 +00:00
|
|
|
</header>
|
2013-01-16 01:41:24 +00:00
|
|
|
{%- if post.excerpt %}
|
|
|
|
<p>{{ post.excerpt }}</p>
|
2013-01-08 01:33:22 +00:00
|
|
|
{%- endif %}
|
2013-06-11 12:30:05 +00:00
|
|
|
<footer>{% trans date=post.date, author=post.author %}Posted {{ date }} by {{ author }}{% endtrans %}</footer>
|
2013-01-08 01:33:22 +00:00
|
|
|
</article>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
2012-09-12 05:08:51 +00:00
|
|
|
</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 %}
|