actix-admin/actix_admin/templates/base.html
2022-07-29 17:53:59 +02:00

32 lines
608 B
HTML

{% if render_partial and render_partial == true %}
{% block content %}
{% endblock content %}
{% else %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Actix Admin</title>
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css">
<script src="https://unpkg.com/htmx.org@1.7.0"></script>
<style type="text/css">
</style>
</head>
<body>
<main class="container">
{% include "header.html" %}
<div>
{% block content %}
{% endblock content %}
</div>
</main>
</body>
</html>
{% endif %}