{% 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>
<li class="previous"><a href="{{context}}/?page={{nextpage}}">← Older</a></li>
{% endif %}
{% if atfirstpage %}
<li class="next disabled"><a>Newer →</a></li>
<li class="next"><a href="{{context}}/?page={{prevpage}}">Newer →</a></li>
</ul>
{% include "blarg/views/templates/posts/publishmodal.html" %}
{% include "blarg/views/templates/posts/deletemodal.html" %}
{% endblock %}