{% extends "base.html" %} {% block title %}{{ post.title }} | {{ site.config.title }}{% endblock %} {% block content %}

{{ post.title }}

{% if site.config.author %} ·
{{ site.config.author }}
{% endif %} {% if post.reading_time > 0 %} ·
{{ post.reading_time }} min read
{% endif %}
{% if post.tags | length > 0 %}
{% for tag in post.tags %} {{ tag }} {% endfor %}
{% endif %}
{{ post.content | safe }}
{% endblock %}