11 lines
173 B
HTML
11 lines
173 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1 class="title">
|
|
{{ section.title }}
|
|
</h1>
|
|
|
|
<p>{{ section.content | safe }}</p>
|
|
|
|
{% endblock content %}
|