1
0
Fork 0

Adds pagination to feed

Fixes #68
This commit is contained in:
Mouse Reeve 2020-04-01 15:36:35 -07:00
parent 575419cc5a
commit 4538a60490
3 changed files with 39 additions and 1 deletions

View file

@ -15,6 +15,26 @@
{% include 'snippets/status.html' with status=activity %}
</div>
{% endfor %}
<div class="content-container pagination row">
{% if prev %}
<p>
<a href="{{ prev }}">
<span class="icon icon-arrow-left"></span>
Previous
</a>
</p>
{% endif %}
{% if next %}
<p class="next">
<a href="{{ next }}">
Next
<span class="icon icon-arrow-right"></span>
</a>
</p>
{% endif %}
</div>
</div>
{% endblock %}