32 lines
802 B
HTML
32 lines
802 B
HTML
{% extends "blarg/views/templates/base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% if posts|is-empty %}
|
|
<div>
|
|
<p class="text-center">There are no posts.</p>
|
|
</div>
|
|
{% else %}
|
|
{% for post in posts %}
|
|
{% include "blarg/views/templates/posts/post.html" %}
|
|
{% endfor %}
|
|
|
|
<ul class="pager">
|
|
{% if atlastpage %}
|
|
<li class="previous disabled"><a>← Older</a></li>
|
|
{% else %}
|
|
<li class="previous"><a href="{{context}}/?page={{nextpage}}">← Older</a></li>
|
|
{% endif %}
|
|
|
|
{% if atfirstpage %}
|
|
<li class="next disabled"><a>Newer →</a></li>
|
|
{% else %}
|
|
<li class="next"><a href="{{context}}/?page={{prevpage}}">Newer →</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
|
|
{% include "blarg/views/templates/posts/publishmodal.html" %}
|
|
{% include "blarg/views/templates/posts/deletemodal.html" %}
|
|
{% endif %}
|
|
{% endblock %}
|