about summary refs log tree commit diff
path: root/templates/page.html
blob: 53a7be33134c7cf7f701fc3ecc807739dd63e549 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base.html" %}

{% block title %}{{ page.title }} - {{ config.title }}{% endblock title %}

{% block content -%}
<main>
  <h1>{{ page.title }}</h1>

  {{ page.content | safe -}}

  <p class="date">
    <time datetime="{{ page.date | date(format="%+") }}">
      {{- page.date | date(format="%B %m, %Y") -}}
    </time>
  </p>

</main>

{%- endblock content %}