summaryrefslogtreecommitdiff
path: root/packages/web/site/templates/page.html
blob: 8189fe6d2c9fb48ee7106e5a78a54eb382a346e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}

{% if page.title %}
{% block title%}
{{ page.title }} :: {{ super() }}
{% endblock title %}
{% endif %}

{% block content %}

<article>
  <h1>{{ page.title }}</h1>

  {{ page.content | safe}}
</article>

{% endblock content %}