{% extends "base.html" %} {% import "macros.html" as macros %} {% block header %}
{{ macros::nav() }}
{% endblock header %} {% block content %}
{% block post %}

{{ page.title }}

{{ macros::frontmatter(classes="frontmatter-page", author=page.extra.author, date=page.date, word_count=page.word_count, read_time=page.reading_time) }} {{ page.content | safe }} {% endblock post %}
{% endblock content %}