www.duckland.org/themes/material-theme/templates/list.tmpl
2015-09-23 22:26:49 -05:00

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 %}