22 lines
573 B
Twig
22 lines
573 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="quote" aria-label="{{ 'Text Content' | translate }}">
|
|
<figure>
|
|
<blockquote>
|
|
{{ post.quote }}
|
|
</blockquote>
|
|
{% if post.source is not empty %}
|
|
<figcaption>
|
|
{{ post.source }}
|
|
</figcaption>
|
|
{% endif %}
|
|
</figure>
|
|
</section>
|
|
{% endblock %}
|