23 lines
536 B
Cheetah
23 lines
536 B
Cheetah
{# -*- coding: utf-8 -*- #}
|
|
{% extends 'base.tmpl' %}
|
|
|
|
{% block content %}
|
|
<article class="listpage">
|
|
<header>
|
|
<h1>{{ title }}</h1>
|
|
<hr />
|
|
</header>
|
|
{% if items %}
|
|
<ul class="postlist">
|
|
{% for text, link, count in items %}
|
|
<li><a href="{{ link }}"><i class="mdi-action-done"></i>{{ text }}</a>
|
|
{% if count %}
|
|
({{ count }})
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<p>{{ messages("Nothing found.") }}</p>
|
|
{% endif %}
|
|
</article>
|
|
{% endblock %}
|