19 lines
683 B
HTML
19 lines
683 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{% block title %}Phonograph{% endblock %}</title>
|
|
{% include "meta_tags.html" %}
|
|
<link rel="stylesheet" href="{{ settings.root_path }}/css_dist/main.css">
|
|
<script type="module" src="{{ settings.root_path }}/js_dist/basic-dropdown.webc.mjs"></script>
|
|
{%- 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>
|