Files
pelican-themes/simple-bootstrap/templates/categories.html
2013-10-19 02:28:55 +08:00

11 lines
328 B
HTML
Executable File

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