forked from mirrors/bookwyrm
35 lines
894 B
HTML
35 lines
894 B
HTML
{% extends 'layout.html' %}
|
|
{% load fr_display %}
|
|
{% block content %}
|
|
|
|
<section class="section" id="feed">
|
|
<div class="container">
|
|
{% 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 %}
|