summaryrefslogtreecommitdiffstats
path: root/templates/activities/local.html
blob: c03b0c0b0e6c2a4885cd1270764088dfec516b39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% 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 %}

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