23 lines
419 B
Twig
23 lines
419 B
Twig
<article id="post-{{ post.ID }}" class="article post-type-{{ post.type }}">
|
|
|
|
<header class="entry-header">
|
|
|
|
<a href="{{ post.link }}">
|
|
<h1 class="page-title">{{ post.title }}</h1>
|
|
</a>
|
|
|
|
</header>
|
|
|
|
{{ fn( 'the_post_thumbnail' ) }}
|
|
|
|
<div class="post-content">
|
|
|
|
<div class="entry-content clearfix">
|
|
|
|
{{ post.content }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</article> |