22 lines
435 B
HTML
22 lines
435 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Actix Admin</title>
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.classless.min.css">
|
|
<script src="https://unpkg.com/htmx.org@1.7.0"></script>
|
|
</head>
|
|
|
|
<body>
|
|
{% include "header.html" %}
|
|
<main>
|
|
<div>
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</div>
|
|
</main>
|
|
</body>
|
|
|
|
</html> |