Files
beflask/app/templates/base.html
2023-06-08 18:06:28 +02:00

1.9 KiB

<html lang="en"> <head> {% block head %} {% block styles %} {{ bootstrap.load_css() }} {% endblock %} {% endblock %} </head>
{% include "_nav.html" %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% if category == 'message' %} {% set category = "info" %} {% endif %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}
{% block content %}{% endblock %}
{% include "status.html" %} {% block jscript %} <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> {{ bootstrap.load_js() }} {% endblock %} </html>