clap/site/templates/index.html
2021-05-18 23:46:23 +01:00

15 lines
326 B
HTML

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