actix-admin/templates/base.html

26 lines
478 B
HTML
Raw Normal View History

{% if render_partial and render_partial == true %}
{% block content %}
{% endblock content %}
{% else %}
2021-11-29 17:35:11 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
2022-10-07 17:03:09 +02:00
{% include "head.html" %}
</head>
<body>
2022-10-06 15:08:00 +02:00
<div id="loading" class="loader-wrapper htmx-indicator">
<div class="loader is-size-1"></div>
</div>
2022-10-07 17:03:09 +02:00
{% include "navbar.html" %}
<div class="container is-fluid">
2021-11-29 17:35:11 +01:00
{% block content %}
{% endblock content %}
</div>
</body>
</html>
{% endif %}