{% extends "base.html" %} {% block title %}{{ title | default(value="Untitled") }} - {{ site_title | default(value="Blog") }}{% endblock title %} {% block description %}{{ description }}{% endblock description %} {% block header_controls %} {% if available_translations and available_translations | length > 1 %}
{% endif %} {% if pdf %} 📄 {% endif %} {% endblock header_controls %} {% block main %}

{{ title | default(value="Untitled") }}

{% if date %}
{{ date | date(format="%B %d, %Y") }}
{% endif %}
{{ content | safe }}
{% if tags %}
{% for tag in tags %}{{ tag }}{% endfor %}
{% endif %} {% endblock main %}