phonograph/phono-server/templates/base.html

16 lines
609 B
HTML
Raw Normal View History

2025-07-08 14:37:03 -07:00
<!doctype html>
2025-10-01 22:37:11 -07:00
<html lang="en">
2025-07-08 14:37:03 -07:00
<head>
<title>{% block title %}Phonograph{% endblock %}</title>
2025-07-08 14:37:03 -07:00
{% include "meta_tags.html" %}
2025-12-18 12:55:01 -08:00
<link rel="stylesheet" href="{{ settings.root_path }}/modern-normalize.min.css">
<link rel="stylesheet" href="{{ settings.root_path }}/main.css">
<link rel="stylesheet" href="{{ settings.root_path }}/tabler-icons/webfont/tabler-icons.min.css">
<script type="module" src="{{ settings.root_path }}/js_dist/basic-dropdown.webc.mjs"></script>
2025-10-01 22:37:11 -07:00
{%- block head_extras %}{% endblock -%}
2025-07-08 14:37:03 -07:00
</head>
<body>
2025-10-01 22:37:11 -07:00
{% block main %}{% endblock %}
2025-07-08 14:37:03 -07:00
</body>
</html>