phonograph/templates/base.html

12 lines
293 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>
{% block main %}{% endblock main %}
</body>
</html>