aboutsummaryrefslogblamecommitdiffstats
path: root/simple-bootstrap/templates/categories.html
blob: e9c8b53120ecd1a6ed25283b0d770a2214418292 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                           
{% extends "base.html" %}
{% block title %} Articles in {{ category }} - {{ SITENAME }}{% endblock %}
{% block archclass %} class="active"{%endblock%}
{% block content %}
<ul>
{% for category, articles in categories %}
    <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}