13 lines
322 B
HTML
13 lines
322 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>
|
||
|
|
{% include "nav.html" %}
|
||
|
|
{% block main %}{% endblock main %}
|
||
|
|
</body>
|
||
|
|
</html>
|