summaryrefslogtreecommitdiffstats
path: root/templates/page.html
blob: 3920e5edf1e017abf74d9501c8ccca1f94fff648 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% import "macros.html" as macros %}
{% extends "index.html" %}
{% block content %}
  <header>
    <hgroup>
      <h1>{{ page.title | safe }}</h1>
      <p>{{ page.description | default(value="") | markdown(inline=true) | safe }}</p>
    </hgroup>
  </header>
  {{ page.content | safe }}
{% endblock content %}