phonograph/interim-server/templates/base.html

18 lines
556 B
HTML
Raw Normal View History

2025-07-08 14:37:03 -07:00
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<title>{% block title %}Interim{% endblock %}</title>
{% include "meta_tags.html" %}
2025-07-16 22:03:04 -07:00
<link rel="stylesheet" href="{{ settings.root_path }}/css_dist/main.css">
2025-07-08 14:37:03 -07:00
</head>
<body>
{% block main %}{% endblock main %}
{% if settings.dev != 0 %}
<script type="module">
import { initDevReloader } from "{{ settings.root_path }}/dev_reloader.mjs";
2025-10-01 22:36:19 -07:00
initDevReloader("http://127.0.0.1:8080{{ settings.root_path }}/__dev-healthz");
</script>
2025-07-08 14:37:03 -07:00
{% endif %}
</body>
</html>