phonograph/templates/base.html
2025-05-13 00:02:33 -07:00

11 lines
293 B
HTML

<!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>