{% endif %}
{# End Meta - Date #}
{# Begin Meta - Author #}
{% if gantry.config.get('content.' ~ scope ~ '.meta-author.enabled', '1') and post.author.name %}
{% endif %}
{# End Meta - Comments #}
{# Begin Meta - Categories #}
{% if gantry.config.get('content.' ~ scope ~ '.meta-categories.enabled', '1') and post.categories is not empty %}
{% if gantry.config.get('content.' ~ scope ~ '.meta-categories.prefix', 'Categories:') is not empty %}
{{ gantry.config.get('content.' ~ scope ~ '.meta-categories.prefix', 'Categories:') ~ ' ' }}
{% endif %}
{% for category in post.categories %}
{%- if gantry.config.get('content.' ~ scope ~ '.meta-categories.link', '1') -%}
{{ category.name }}
{%- else -%}
{{ category.name }}
{%- endif -%}
{% if not loop.last %}{{ ','|trim }}{% endif %}
{% endfor %}
{% endif %}
{# End Meta - Categories #}
{# Begin Meta - Tags #}
{% if gantry.config.get('content.' ~ scope ~ '.meta-tags.enabled', '1') and post.tags is not empty %}
{% if gantry.config.get('content.' ~ scope ~ '.meta-tags.prefix', 'Tags:') is not empty %}
{{ gantry.config.get('content.' ~ scope ~ '.meta-tags.prefix', 'Tags:') ~ ' ' }}
{% endif %}
{% for tag in post.tags %}
{%- if gantry.config.get('content.' ~ scope ~ '.meta-tags.link', '1') -%}
{{ tag.name }}
{%- else -%}
{{ tag.name }}
{%- endif -%}
{% if not loop.last %}{{ ','|trim }}{% endif %}
{% endfor %}