clap/site/templates/page.html

16 lines
317 B
HTML
Raw Normal View History

{% extends "shared/base.html" %}
{% block title %}{{ page.title }}{% endblock title %}
{% block content %}
{% include "shared/header.html" %}
<main id="content" class="maxview">
<article>
<h1 class="post-title">{{ page.title }}</h1>
{{ page.content | safe }}
</article>
</main>
{% endblock content %}