summaryrefslogtreecommitdiffstats
path: root/templates/page.html
blob: 6548f9a31411a282a70c80d663949d0e8f3c969d (plain)
1
2
3
4
5
6
7
8
9
10
{% 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 %}