18 lines
669 B
Twig
18 lines
669 B
Twig
|
{% extends "content" ~ DIR ~ "post.twig" %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% if post.title is not empty %}
|
||
|
<h2 class="post_title">
|
||
|
<a href="{{ post.url() }}" rel="bookmark" title="{{ 'Permanent link to “%s”' | translate | format(post.title | striptags | normalize | fix(true)) }}">{{ post.title }}</a>
|
||
|
</h2>
|
||
|
{% endif %}
|
||
|
<section class="photo" aria-label="{{ 'File Attachment' | translate }}">
|
||
|
{{ post.filename | thumbnail(post.alt_text, post.source, [], "(min-width: 764px) 728px, 95vw") }}
|
||
|
</section>
|
||
|
{% if post.caption is not empty %}
|
||
|
<section class="caption" aria-label="{{ 'Text Content' | translate }}">
|
||
|
{{ post.caption }}
|
||
|
</section>
|
||
|
{% endif %}
|
||
|
{% endblock %}
|