moviewyrm/bookwyrm/templates/feed.html
2020-09-28 21:08:42 -07:00

36 lines
866 B
HTML

{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<section class="section">
<div>
{% for activity in activities %}
<div class="block">
{% 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>
</section>
{% endblock %}