2022-11-13 17:42:47 -08:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Local Timeline{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2023-01-13 14:54:21 -08:00
|
|
|
{% if page_obj.number == 1 %}
|
|
|
|
{% include "_announcements.html" %}
|
|
|
|
{% endif %}
|
|
|
|
|
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
|
|
|
|
2022-12-16 16:06:29 -08:00
|
|
|
<div class="pagination">
|
2022-12-24 09:27:34 -08:00
|
|
|
{% if page_obj.has_previous and not request.htmx %}
|
2022-12-16 16:24:56 -08:00
|
|
|
<a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a>
|
2022-12-16 16:06:29 -08:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page_obj.has_next %}
|
2022-12-29 10:33:41 -08:00
|
|
|
<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>
|
2022-12-16 16:06:29 -08:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2022-11-13 17:42:47 -08:00
|
|
|
{% endblock %}
|