website/templates/project.html

12 lines
197 B
HTML
Raw Normal View History

2023-06-17 15:58:42 +02:00
{% extends "base.html" %}
{% block content %}
<section>
<h1>{{ page.title }}</h1>
{{ page.description }}
</section>
<section>
{{ page.content | safe }}
</section>
{% endblock content %}