2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00
website/homepage/theme/templates/archives.html

21 lines
436 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% set title = 'Feed' %}
{% set description = 'Description' %}
{% set href = 'blog/' %}
{% set no_stats = False %}
{% set template = 'archives' %}
{% block content %}
{% for article in articles %}
{% if loop.index != 1 %}
<hr>
{% endif %}
<div class="content">
<div class="container-reader">
{{ article.content }}
</div>
</div>
{% endfor %}
{% endblock %}