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

17 lines
493 B
Twig
Raw Normal View History

2024-06-20 14:10:42 +00:00
{% extends "layouts" ~ DIR ~ "default.twig" %}
{% block content %}
{% if posts.paginated is not empty %}
<div class="ribbon">
{{ "Posts created by &#8220;%s&#8221;" | translate | format(author.name | fix) }}
</div>
{% endif %}
{% for post in posts.paginated %}
{% include(["feathers" ~ DIR ~ post.feather ~ ".twig", "feathers" ~ DIR ~ "missing.twig"]) %}
{% else %}
<div role="status" class="ribbon">
{{ "This user hasn't created any posts." | translate }}
</div>
{% endfor %}
{% endblock %}