phonograph/interim-server/templates/base.html
2025-10-09 08:01:01 +00:00

18 lines
581 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>{% block title %}Interim{% endblock %}</title>
{% include "meta_tags.html" %}
<link rel="stylesheet" href="{{ settings.root_path }}/css_dist/main.css">
{%- block head_extras %}{% endblock -%}
</head>
<body>
{% block main %}{% endblock %}
{% if settings.dev != 0 %}
<script type="module">
import { initDevReloader } from "{{ settings.root_path }}/dev_reloader.mjs";
initDevReloader("{{ settings.frontend_host }}{{ settings.root_path }}/__dev-healthz");
</script>
{% endif %}
</body>
</html>