aboutsummaryrefslogtreecommitdiffstats
path: root/templates/page.html
blob: f3a86d89c4abab8498a31818aff4dd244189951a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}

{% block content %}
  <h2>{{ page.title }}</h2>
  <div class="content">
    {% if page.date %}
      <span>{{ page.date }}</span>
    {% endif %}
    {{ page.content | safe }}
  </div>
{% endblock content %}