leilukin-tumbleblog/themes/blossom/pages/index.twig

18 lines
472 B
Twig
Raw Normal View History

2024-06-20 14:10:42 +00:00
{% extends "layouts" ~ DIR ~ "default.twig" %}
{% block content %}
{% if reason is not defined %}{# Some modules define reason in error states #}
{% for post in posts.paginated %}
{% include(["feathers" ~ DIR ~ post.feather ~ ".twig", "feathers" ~ DIR ~ "missing.twig"]) %}
{% else %}
<div role="status" class="ribbon">
{{ "Nothing here yet!" | translate }}
</div>
{% endfor %}
{% else %}
<div role="status" class="ribbon">
{{ reason }}
</div>
{% endif %}
{% endblock %}