14 lines
258 B
HTML
14 lines
258 B
HTML
{% include 'header.html' %}
|
|
{% from 'bootstrap5/utils.html' import render_messages %}
|
|
|
|
<div class="container">
|
|
{{ render_messages() }}
|
|
|
|
{% block content %}
|
|
|
|
This content block is still being worked on!
|
|
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% include 'footer.html' %}
|