phonograph/phono-server/templates/base.html
2025-11-19 09:19:36 +00:00

13 lines
431 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 %}
</body>
</html>