website/templates/project.html
2023-06-17 16:04:09 +02:00

12 lines
197 B
HTML

{% extends "base.html" %}
{% block content %}
<section>
<h1>{{ page.title }}</h1>
{{ page.description }}
</section>
<section>
{{ page.content | safe }}
</section>
{% endblock content %}