actix-admin/actix_admin/templates/base.html

32 lines
608 B
HTML
Raw Normal View History

2022-07-29 17:53:59 +02:00
{% if render_partial and render_partial == true %}
{% block content %}
{% endblock content %}
{% else %}
2022-04-23 20:03:09 +02:00
<!DOCTYPE html>
<html>
2022-04-25 17:23:38 +02:00
<head>
<meta charset="utf-8">
<title>Actix Admin</title>
2022-07-26 11:47:49 +02:00
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css">
2022-06-04 16:34:16 +02:00
<script src="https://unpkg.com/htmx.org@1.7.0"></script>
2022-07-29 17:53:59 +02:00
<style type="text/css">
</style>
2022-04-25 17:23:38 +02:00
</head>
<body>
2022-07-26 11:47:49 +02:00
<main class="container">
2022-07-29 17:53:59 +02:00
{% include "header.html" %}
2022-04-25 17:23:38 +02:00
<div>
{% block content %}
{% endblock content %}
</div>
</main>
</body>
2022-07-29 17:53:59 +02:00
</html>
{% endif %}