leilukin-tumbleblog/themes/topaz/pages/category.twig

11 lines
332 B
Twig

{% extends "layouts" ~ DIR ~ "default.twig" %}
{% block content %}
<div class="ribbon">
{{ "Posts in category &#8220;%s&#8221;" | translate | format(category | fix) }}
</div>
{% for post in posts.paginated %}
{% include(["feathers" ~ DIR ~ post.feather ~ ".twig", "feathers" ~ DIR ~ "missing.twig"]) %}
{% endfor %}
{% endblock %}