things almost work
[encyclr.git] / html / category.html
blob7ad4b9768d3560812c648f0d2f017171ec35cf39
1 {% spaceless %}
2 {% include "html/TOP.html" %}
3 <title>{{ title }}</title>
4 {% include "html/BODY.html" %}
5 {% include "html/LOG.html" %}
6 <div class="c"/>
7 {% if latest_article_list %}
8 <ul>
9 {% for article in latest_article_list %}
10 <li><a href="/a/{{ article }}">{{ article }}</a></li>
11 {% endfor %}
12 </ul>
13 {% else %}
14 <p>No articles are available.</p>
15 {% endif %}
16 </div>
17 {% include "html/END.html" %}
18 {% endspaceless %}