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>
|
2025-11-19 01:45:58 +00:00
|
|
|
<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">
|
2025-10-22 00:43:53 -07:00
|
|
|
<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>
|