You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% extends "layouts/default.twig" %}
-
- {% block content %}
- {% if posts.paginated %}
- <h1>${ "Drafts" | translate }</h1>
- {% endif %}
- {% for post in posts.paginated %}
- {% include "feathers/" ~ post.feather ~ ".twig" %}
- {% else %}
- <h1>${ "No Drafts" | translate }</h1>
- <p>${ "You don't have any drafts." | translate }</p>
- {% endfor %}
- {% endblock %}
|