hack-wpi-python/goathacks/templates/base.html
Cara Salter cd5e58fa59
Start admin site rewrite
aaaaaa
2024-01-11 14:25:21 -05:00

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' %}