This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
blarg/resources/views/posts/list.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>&larr; Older</a></li>
{% else %}
<li class="previous"><a href="{{context}}/?page={{nextpage}}">&larr; Older</a></li>
{% endif %}
{% if atfirstpage %}
<li class="next disabled"><a>Newer &rarr;</a></li>
{% else %}
<li class="next"><a href="{{context}}/?page={{prevpage}}">Newer &rarr;</a></li>
{% endif %}
</ul>
{% include "blarg/views/templates/posts/publishmodal.html" %}
{% include "blarg/views/templates/posts/deletemodal.html" %}
{% endif %}
{% endblock %}