Add pagination to the blog page

No UI to control it yet
This commit is contained in:
Bat
2018-07-20 18:42:35 +02:00
parent 3764e295b8
commit 67eb41add1
5 changed files with 62 additions and 8 deletions
+2 -2
View File
@@ -22,14 +22,14 @@
<section>
<h2>{{ "Latest articles" | _ }}</h2>
{% if recents | length < 1 %}
{% if posts | length < 1 %}
<p>{{ "No posts to see here yet." | _ }}</p>
{% endif %}
{% if is_author %}
<a href="new" class="button inline-block">{{ "New article" | _ }}</a>
{% endif %}
<div class="cards">
{% for article in recents %}
{% for article in posts %}
{{ macros::post_card(article=article) }}
{% endfor %}
</div>