27 lines
528 B
Twig
27 lines
528 B
Twig
{% extends 'base.twig' %}
|
|
|
|
{% block page %}
|
|
|
|
<article id="post-{{ post.ID }}" {{ fn('post_class') }}>
|
|
<header class="entry-header">
|
|
<h1 class="page-title">{{ post.title }}</h1>
|
|
</header>
|
|
|
|
{{ fn('the_post_thumbnail') }}
|
|
|
|
<div class="post-content">
|
|
<div class="entry-content clearfix">
|
|
|
|
{% block page_content %}
|
|
|
|
{{ post.content }}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</article>
|
|
|
|
{% endblock %}
|