film2.0/templates/base.html

23 lines
643 B
HTML
Raw Normal View History

2024-01-23 16:31:46 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{% block title %}{% endblock %} - {{ config["name"] }}</title>
<link
rel="stylesheet"
href="{{ url_for('static', filename='style/main.css') }}"
/>
<link rel="icon" href="{{ config["favicon"] }}">
{# <script src="{{ url_for('static', filename='lib/htmx.min.js') }}"></script> #}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>