diff options
Diffstat (limited to 'templates/section.html')
-rw-r--r-- | templates/section.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/section.html b/templates/section.html index 09763b9..0725de2 100644 --- a/templates/section.html +++ b/templates/section.html @@ -1 +1,10 @@ +{% import "_macros.html" as macros %} {% extends "index.html" %} + +{% block title %}{{ section.title }} | {{ super() }} {% endblock title %} + + +{% block content %} +<div class="heading-text">{{ section.description }}</div> +{{ section.content | safe }} +{% endblock content %} |