summaryrefslogtreecommitdiffstats
path: root/templates/activities/local.html
blob: c3d180b4cc063d1a1e7a4649d9c48c4bc1fcb4b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}

{% block title %}Local Timeline{% endblock %}

{% block content %}
    {% for post in page_obj %}
        {% include "activities/_post.html" with feedindex=forloop.counter %}
    {% empty %}
        No posts yet.
    {% endfor %}

    <div class="pagination">
        {% if page_obj.has_previous %}
            <div class="load-more"><a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a></div>
        {% endif %}

        {% if page_obj.has_next %}
            <div class="load-more"><a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a></div>
        {% endif %}
    </div>
{% endblock %}