13 lines
431 B
HTML
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>
|