{% extends "layout.html" %}
{% import "macros/layout.html" as layout %}
{% import "macros/post.html" as post %}
{% block title %}
{% if page.title %}{{ page.title }} - {% endif %}
{{ config.title }}
{% endblock %}
{% block content %}
« back
{{ page.title }}
{% if page.date or page.author %}
Posted
{% if page.extra.author %}by {{ page.extra.author }}{% endif %}
on {{ page.date }}
- {{ page.reading_time }} min read
{% endif %}
{% if page.extra.toc and page.toc | length %}
table of contents
{{ post::render_toc(toc=page.toc) }}
{% endif %}
{{ page.content | safe }}
End.
{% if page.taxonomies.tags %}
This post is tagged with:
{% for tag in page.taxonomies.tags %}
{% if loop.index0 > 0 %}, {% endif %}
{{ tag }}
{% endfor %}
{% endif %}
{% endblock %}