{# since our posts have the template set as 'post', they will use this theme file #} {% include 'header.html' with {'type': 'post'} %} {% include 'navigation.html' %}
{# use the current page meta to show some info about this post #}

{{ current_page.meta.title }}

{# format the date here to be the one from the config #}
{% if meta.updated %} Updated: {{ current_page.meta.updated|date(config.date_format) }}
{% endif %}
{{ content }}
{% include 'footer.html' %}