mirror of
https://github.com/offen/website.git
synced 2024-11-23 01:20:29 +01:00
21 lines
436 B
HTML
21 lines
436 B
HTML
|
{% 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 %}
|