hack-wpi-python/goathacks/templates/base.html
Cara Salter b2c8f3a77a
bootstrap5-ify the dashboard and participant-facing pages
except login

don't merge to master yet!
2023-01-13 18:06:16 -05:00

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