forked from github/pelican
10 lines
225 B
HTML
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 %}
|
|
|