{% if not hero_image_name %}
{% include 'partials/blog/title.html.twig' with {title_level: 'h2'} %} {% if not (grav.uri.param('hidepagetitle')) %} {% if page.header.subtitle %}

{{ page.header.subtitle }}

{% endif %}

{% include 'partials/blog/date.html.twig' %} {% if config.plugins.readingtime.enabled %} {% include 'partials/blog/readingtime.html.twig' %} {% endif %}

{% include 'partials/blog/taxonomy.html.twig' %} {% endif %}
{% endif %}
{# check to hide post summary on page - hibbittsdesign.org #} {% if page.parent.header.display_post_summary.enabled %} {% set content = page.content|slice(page.summary | length) %} {% else %} {% set content = page.content %} {% endif %} {# check to show summary only - hibbittsdesign.org #} {% if not (grav.uri.param('summaryonly') or grav.uri.param('onlysummary')) %} {% if content is not empty %} {{ content|raw }} {% else %} {{ page.summary|raw }} {% endif %} {% else %} {{ page.summary|raw }} {% if page.header.continue_link is same as(true) %} {{ 'THEME_QUARK.BLOG.ITEM.CONTINUE_READING'|t }} {% endif %} {% endif %}
{% if config.plugins.comments.enabled %} {% include 'partials/comments.html.twig' %} {% endif %}
{# added check for content display flag - hibbittsdesign.org #} {% if not (grav.uri.param('chromeless') or grav.uri.param('embedded') or grav.uri.param('standalone')) and not(theme_var('chromeless.enabled')) and not (grav.uri.param('summaryonly') or grav.uri.param('onlysummary')) %}

{% if not page.isLast %} {{ 'THEME_QUARK.BLOG.ITEM.PREV_POST'|t }} {% endif %} {{ pagination }} {% if not page.isFirst %} {{ 'THEME_QUARK.BLOG.ITEM.NEXT_POST'|t }} {% endif %}

{% endif %}