mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 15:39:38 +00:00
15 lines
404 B
HTML
15 lines
404 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Local Timeline{% endblock %}
|
|
|
|
{% block content %}
|
|
{% for post in page_obj %}
|
|
{% include "activities/_post.html" %}
|
|
{% 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 %}
|