clap/site/templates/index.html

16 lines
326 B
HTML
Raw Normal View History

2020-11-13 23:39:23 +00:00
{% 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>
2020-11-13 23:39:23 +00:00
</main>
{% endblock content %}