22 lines
655 B
Cheetah
22 lines
655 B
Cheetah
{# -*- coding: utf-8 -*- #}
|
|
{% extends 'base.tmpl' %}
|
|
|
|
{% block content %}
|
|
<article class="listpage">
|
|
<header>
|
|
<h1>{{ title|e }}</h1>
|
|
</header>
|
|
{% if posts %}
|
|
<ul class="postlist">
|
|
{% for post in posts %}
|
|
<li>
|
|
<a href="{{ post.permalink() }}" class="listtitle">{{ post.title()|e }}</a> -
|
|
<time class="listdate" datetime="{{ post.formatted_date('webiso') }}" title="{{ post.formatted_date(date_format)|e }}">{{ post.formatted_date(date_format)|e }}</time>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<p>{{ messages("No posts found.") }}</p>
|
|
{% endif %}
|
|
</article>
|
|
{% endblock %}
|