phonograph/templates/base.html

13 lines
322 B
HTML
Raw Normal View History

2025-05-02 23:48:54 -07:00
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<title>{% block title %}Interim{% endblock %}</title>
{% include "meta_tags.html" %}
<link rel="stylesheet" href="{{ base_path }}/main.css">
</head>
<body>
{% include "nav.html" %}
{% block main %}{% endblock main %}
</body>
</html>