18 lines
558 B
Twig
18 lines
558 B
Twig
|
{% extends "content" ~ DIR ~ "post.twig" %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% if post.title is not empty %}
|
||
|
<header>
|
||
|
<h2>
|
||
|
<a href="{{ post.url() }}" rel="bookmark" title="{{ 'Permanent link to “%s”' | translate | format(post.title | striptags | normalize | fix(true)) }}">{{ post.title }}</a>
|
||
|
</h2>
|
||
|
<h3>
|
||
|
<a href="{{ url('author/' ~ post.author.id) }}">{{ "Written by %s" | translate | format(post.author.name) }}</a>
|
||
|
</h3>
|
||
|
</header>
|
||
|
{% endif %}
|
||
|
<section class="body" aria-label="{{ 'Text Content' | translate }}">
|
||
|
{{ post.body }}
|
||
|
</section>
|
||
|
{% endblock %}
|