10 lines
313 B
Twig
Raw Normal View History

2024-06-20 22:10:42 +08:00
{% extends "layouts" ~ DIR ~ "default.twig" %}
{% block content %}
{% for post in posts.paginated %}
{% include(["feathers" ~ DIR ~ post.feather ~ ".twig", "feathers" ~ DIR ~ "missing.twig"]) %}
{% else %}
<div role="status" class="filter">{{ "Nothing here yet!" | translate }}</div>
{% endfor %}
{% endblock %}