{# Layout for a single post or page (docs/post/*.html, docs/page/*.html). Context: meta_data, post_meta_data, canonical, full_link, image_url, jsonld, title, author, summary, category, date, last_modified, content, phrases, image, tags, link #} {% extends "base.html" %} {% block page_title %}{{ title }} — {{ meta_data.title }}{% endblock %} {% block meta %} {% if summary %}{% endif %} {% if author %}{% endif %} {% if summary %}{% endif %} {% if full_link %}{% endif %} {% if meta_data %}{% endif %} {% if image_url %}{% endif %} {% if date %}{% endif %} {% if summary %}{% endif %} {% if image_url %}{% endif %} {% endblock %} {% block content %}

{{ title }}

{% if date %}{% endif %} {% if author %}· {{ author }}{% endif %} {% if category %} · {{ category }} {% endif %}

{% if summary %}

{{ summary }}

{% endif %}
{{ content }}
{% if tags %}

{% for tag in tags %} {{ tag }} {% endfor %}

{% endif %} {% if last_modified and last_modified != date %}

Last updated {{ last_modified.strftime('%d %B %Y') }}

{% endif %}
{% endblock %}