mirror of
https://github.com/arsenetar/pelican-red.git
synced 2024-11-22 11:19:02 +00:00
11 lines
293 B
HTML
11 lines
293 B
HTML
{% extends 'base.html' %}
|
|
{% block title %}{{ super() }} - Archives{% endblock %}
|
|
{% block content_title %}Archives{% endblock %}
|
|
{% block content %}
|
|
<ul class="no-bullet">
|
|
{% for article in articles %}
|
|
<li>{{ article.title|title }} - {{ article.date }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|