reformat templates
[wolnelektury.git] / src / catalogue / templates / catalogue / tag_catalogue.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3 {% load plain_list from catalogue_tags %}
4 {% load ssi_include from ssify %}
5
6 {% block titleextra %}{{ title }}{% endblock %}
7
8 {% block bodyid %}tag-catalogue{% endblock %}
9
10 {% block body %}
11   <h1>{{ title|title }} {% trans "on Wolne Lektury" %}</h1>
12
13   {% for tag in best %}
14     <a class="tag-box" href="{{ tag.get_absolute_url }}">
15       {% ssi_include "catalogue_tag_box" pk=tag.pk %}
16     </a>
17   {% endfor %}
18
19   <h2>{{ whole_category }}</h2>
20
21   {% plain_list tags %}
22 {% endblock %}