takahe/templates/activities/local.html

22 lines
850 B
HTML
Raw Normal View History

2022-11-13 17:42:47 -08:00
{% extends "base.html" %}
{% block title %}Local Timeline{% endblock %}
{% block content %}
2022-11-22 07:57:40 -08:00
{% for post in page_obj %}
2022-12-07 08:12:43 -08:00
{% include "activities/_post.html" with feedindex=forloop.counter %}
2022-11-17 16:43:00 -08:00
{% empty %}
No posts yet.
{% endfor %}
2022-11-22 07:57:40 -08:00
<div class="pagination">
2022-12-24 09:27:34 -08:00
{% if page_obj.has_previous and not request.htmx %}
<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 }}" hx-get=".?page={{ page_obj.next_page_number }}" hx-select=".left-column > *:not(.view-options)" hx-target=".pagination" hx-swap="outerHTML" {% if config_identity.infinite_scroll %}hx-trigger="revealed"{% endif %}>Next Page</a>
{% endif %}
</div>
2022-11-13 17:42:47 -08:00
{% endblock %}