phonograph/interim-server/templates/base.html
2025-08-04 13:59:50 -07:00

18 lines
638 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" src="{{ settings.root_path }}/dev_reloader.mjs"></script>
<script type="module">
import { initDevReloader } from "{{ settings.root_path }}/dev_reloader.mjs";
initDevReloader("ws://127.0.0.1:8080{{ settings.root_path }}/__dev-healthz");
</script>
{% endif %}
</body>
</html>