{% set twigTemplate = 'meta-page.html.twig' %}
{% block meta %} {# Begin Meta - Date #} {% if gantry.config.get('content.' ~ scope ~ '.meta-date.enabled', '0') and post.date %}
{% if gantry.config.get('content.' ~ scope ~ '.meta-date.prefix', '') is not empty %} {{ gantry.config.get('content.' ~ scope ~ '.meta-date.prefix', '') ~ ' ' }} {% endif %} {% if gantry.config.get('content.' ~ scope ~ '.meta-date.link', '1') %} {{ post.date(gantry.config.get('content.' ~ scope ~ '.meta-date.format', 'j F Y')) }} {% else %} {{ post.date(gantry.config.get('content.' ~ scope ~ '.meta-date.format', 'j F Y')) }} {% endif %}
{% endif %} {# End Meta - Date #} {# Begin Meta - Author #} {% if gantry.config.get('content.' ~ scope ~ '.meta-author.enabled', '0') and post.author.name %}
{% if gantry.config.get('content.' ~ scope ~ '.meta-author.prefix', '') is not empty %} {{ gantry.config.get('content.' ~ scope ~ '.meta-author.prefix', '') ~ ' ' }} {% endif %} {% if gantry.config.get('content.' ~ scope ~ '.meta-author.link', '1') %} {{ post.author.name }} {% else %} {{ post.author.name }} {% endif %}
{% endif %} {# End Meta - Author #} {% endblock %}