1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/themes/templates/category.html
2010-09-16 01:49:26 +01:00

10 lines
225 B
HTML

{% extends "base.html" %}
{% block content %}
Articles in the {{ category }} category.
<ul>
{% for article in articles %}
<li><a href="../{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}