actix-admin/example/templates/example_base.html

14 lines
317 B
HTML
Raw Normal View History

2022-08-06 20:09:30 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2022-08-06 21:49:52 +02:00
<title>Actix Admin Example</title>
2022-08-06 20:09:30 +02:00
2022-08-06 21:49:52 +02:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
2022-08-06 20:09:30 +02:00
</head>
<body>
{% block content %}
{% endblock content %}
</body>
</html>