You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
7 years ago
|
<div class="content-item h-entry">
|
||
|
|
||
|
{% if not hero_image_name %}
|
||
|
<div class="content-title text-center">
|
||
|
{% include 'partials/blog/title.html.twig' with {title_level: 'h2'} %}
|
||
|
{% if page.header.subtitle %}
|
||
|
<h3 >{{ page.header.subtitle }}</h3>
|
||
|
{% endif %}
|
||
|
{% include 'partials/blog/date.html.twig' %}
|
||
|
{% include 'partials/blog/taxonomy.html.twig' %}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
|
||
|
<div class="e-content">
|
||
|
{{ page.content }}
|
||
|
</div>
|
||
|
|
||
|
{% if page.header.continue_link is sameas(true) and config.plugins.comments.enabled %}
|
||
|
{% include 'partials/comments.html.twig' %}
|
||
|
{% endif %}
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<p class="prev-next text-center">
|
||
|
|
||
|
|
||
|
{% if not page.isLast %}
|
||
|
<a class="btn" href="{{ page.prevSibling.url }}"><i class="fa fa-angle-left"></i> {{ 'BLOG.ITEM.PREV_POST'|t }}</a>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if not page.isFirst %}
|
||
|
<a class="btn" href="{{ page.nextSibling.url }}">{{ 'BLOG.ITEM.NEXT_POST'|t }} <i class="fa fa-angle-right"></i></a>
|
||
|
{% endif %}
|
||
|
</p>
|