1
0
Fork 0
forked from 2sys/phonograph
phonograph/phono-server/templates/layouts/base.html

20 lines
844 B
HTML
Raw Permalink 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>
2026-01-19 18:48:14 +00:00
<meta charset="utf-8">
<meta name="robots" content="noindex,nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg" href="{{ settings.root_path }}/phono.svg">
<title>{% block title %}Phonograph{% endblock %}</title>
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">
2026-01-19 18:48:14 +00:00
{%- block head %}{% endblock -%}
2025-07-08 14:37:03 -07:00
</head>
<body>
2026-01-19 18:48:14 +00:00
{%- block body %}{% endblock -%}
<script type="module" src="{{ settings.root_path }}/js_dist/basic-dropdown.webc.mjs"></script>
{%- block scripts %}{% endblock -%}
2025-07-08 14:37:03 -07:00
</body>
</html>