KXStudio Website https://kx.studio/
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.

14 lines
465B

  1. {% extends "layouts/default.twig" %}
  2. {% block content %}
  3. {% if posts.paginated %}
  4. <h1>${ "Drafts" | translate }</h1>
  5. {% endif %}
  6. {% for post in posts.paginated %}
  7. {% include "feathers/" ~ post.feather ~ ".twig" %}
  8. {% else %}
  9. <h1>${ "No Drafts" | translate }</h1>
  10. <p>${ "You don't have any drafts." | translate }</p>
  11. {% endfor %}
  12. {% endblock %}