17 lines
556 B
HTML
17 lines
556 B
HTML
<!doctype html>
|
|
<html lang="en" data-bs-theme="dark">
|
|
<head>
|
|
<title>{% block title %}Interim{% endblock %}</title>
|
|
{% include "meta_tags.html" %}
|
|
<link rel="stylesheet" href="{{ settings.root_path }}/css_dist/main.css">
|
|
</head>
|
|
<body>
|
|
{% block main %}{% endblock main %}
|
|
{% if settings.dev != 0 %}
|
|
<script type="module">
|
|
import { initDevReloader } from "{{ settings.root_path }}/dev_reloader.mjs";
|
|
initDevReloader("http://127.0.0.1:8080{{ settings.root_path }}/__dev-healthz");
|
|
</script>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|