18 lines
607 B
Twig
18 lines
607 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 %}
|
||
|
{% if post.description is not empty %}
|
||
|
<section class="description" aria-label="{{ 'Text Content' | translate }}">
|
||
|
{{ post.description }}
|
||
|
</section>
|
||
|
{% endif %}
|
||
|
<section class="video" aria-label="{{ 'File Attachment' | translate }}">
|
||
|
{{ post.video_player }}
|
||
|
</section>
|
||
|
{% endblock %}
|