Add a dedicated page for the federated feed

This commit is contained in:
Bat
2018-09-05 15:37:49 +01:00
parent 1496598a45
commit 79348e06ff
3 changed files with 35 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{% extends "base" %}
{% import "macros" as macros %}
{% block title %}
{{ "All the articles of the Fediverse" | _ }}
{% endblock title %}
{% block content %}
<h1>{{ "All the articles of the Fediverse" | _ }}</h1>
<div class="cards">
{% for article in articles %}
{{ macros::post_card(article=article) }}
{% endfor %}
</div>
{{ macros::paginate(page=page, total=n_pages) }}
{% endblock content %}