takahe/templates/activities/local.html

22 lines
616 B
HTML
Raw Normal View History

2022-11-14 01:42:47 +00:00
{% extends "base.html" %}
{% block title %}Local Timeline{% endblock %}
{% block content %}
2022-11-22 15:57:40 +00:00
{% for post in page_obj %}
2022-12-07 16:12:43 +00:00
{% include "activities/_post.html" with feedindex=forloop.counter %}
2022-11-18 00:43:00 +00:00
{% empty %}
No posts yet.
{% endfor %}
2022-11-22 15:57:40 +00:00
<div class="pagination">
{% if page_obj.has_previous %}
<a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a>
{% endif %}
{% if page_obj.has_next %}
<a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a>
{% endif %}
</div>
2022-11-14 01:42:47 +00:00
{% endblock %}