31 lines
761 B
Twig
31 lines
761 B
Twig
{% extends "layouts" ~ DIR ~ "default.twig" %}
|
|
|
|
{% block content %}
|
|
{% if posts.paginated is not empty %}
|
|
<div class="filter">{{ "Drafts" | translate }}</div>
|
|
{% for post in posts.paginated %}
|
|
{% include(["feathers" ~ DIR ~ post.feather ~ ".twig", "feathers" ~ DIR ~ "missing.twig"]) %}
|
|
{% endfor %}
|
|
{% if posts.prev_page() or posts.next_page() %}
|
|
<!-- Navigation -->
|
|
<nav class="traversal">
|
|
<ul class="navigation">
|
|
{% if posts.prev_page() %}
|
|
<li>
|
|
{{ posts.prev_link("Newer posts" | translate) }}
|
|
</li>
|
|
{% endif %}
|
|
{% if posts.next_page() %}
|
|
<li>
|
|
{{ posts.next_link("Older posts" | translate) }}
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% else %}
|
|
<div role="status">{{ "You don't have any drafts." | translate }}</div>
|
|
{% endif %}
|
|
{% endblock %}
|