{% extends "base.html" %} {% block title %}{{ page.title }}{% endblock %} {% block content %}

{{ page.title }}

{% if page.updated_at %}

Last updated {{ page.updated_at.strftime('%Y-%m-%d') }} {% if page.updated_by %}by {{ page.updated_by.username }}{% endif %} {% if current_user.is_authenticated and current_user.is_admin %} — edit {% endif %}

{% endif %}
{{ page.content_md | markdown }}
{% endblock %}