{% extends "base.html" %}

{% block content %}
  <h2>{{ page.title }}</h2>
  <div class="content">
    {% if page.date %}
      <p>{{ page.date }} {% if page.updated %}(updated on {{ page.updated }}){% endif %}</p>
    {% endif %}
    {{ page.content | safe }}
  </div>
{% endblock content %}