website/themes/nervproject/templates/page.html

14 lines
269 B
HTML
Raw Normal View History

2019-03-21 02:22:40 +01:00
{% extends "base.html" %}
{% block title %} – {{ page.title }}{% endblock %}
{% block content %}
<article class="single">
<header>
<h1 id="{{ page.slug }}">{{ page.title }}</h1>
</header>
<div>
{{ page.content }}
</div>
</article>
{% endblock %}