actix-admin/actix_admin/templates/base.html

21 lines
374 B
HTML
Raw Normal View History

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>
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.classless.min.css">
</head>
<body>
{% include "header.html" %}
<main>
<div>
{% block content %}
{% endblock content %}
</div>
</main>
</body>
2022-04-23 20:03:09 +02:00
</html>