{% extends "base.html" %} {% block content %}
    <h3>{{ page.title }}</h3>
    <article>
        <p>Published on: {{ page.date }}</p>
        <div>
            {{ page.content | safe }}
        </div>
    </article>
{% endblock content %}