15 lines
316 B
HTML
15 lines
316 B
HTML
{% include 'header.html' %}
|
|
{% from 'bootstrap5/utils.html' import render_messages %}
|
|
|
|
<div class="container card d-flex mt-10 pt-10" style="height:
|
|
100%;">
|
|
{{ render_messages() }}
|
|
|
|
{% block content %}
|
|
|
|
This content block is still being worked on!
|
|
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% include 'footer.html' %}
|