15 lines
609 B
HTML
15 lines
609 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 }}/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>
|
|
{%- block head_extras %}{% endblock -%}
|
|
</head>
|
|
<body>
|
|
{% block main %}{% endblock %}
|
|
</body>
|
|
</html>
|