{% extends "layout.html" %} {% block content %}

{{ page.title }}

{{ page.description }}

{{ page.reading_time }} min {{ page.word_count }} words
{% if page.extra.author.name %} {{ page.extra.author.name }} {% if page.extra.author.avatar %} {% endif %} {% else %} {{ config.extra.default_author.name }} {% endif %}
{% if page.taxonomies.categories %}

Categories: {% for category in page.taxonomies.categories %} {{category}} {% endfor %}

{% endif %}
{% if page.taxonomies.tags %}

Tags: {% for tag in page.taxonomies.tags %} {{tag}} {% endfor %}

{% endif %}
{{ page.content | safe }}
{% endblock content %}