{% extends "base.html" %} {% block content %} <p><a href="/">← Return to Home</a></p> <header> <h1>{{ article.title }}</h1> <div class="summary"> {{ article.summary }} </div> <p class="metadata"> {{ article.locale_date }} {% if article.modified %} — updated {{ article.locale_modified }} {% endif %} </p> </header> <hr /> <article> {{ article.content }} </article> {% endblock %}