film2.0/templates/base.html

23 lines
651 B
HTML
Raw Permalink 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" />
2024-01-25 01:19:00 +00:00
<title>{% block title %}{% endblock %} - {{ config.get("name") }}</title>
2024-01-23 16:31:46 +00:00
<link
rel="stylesheet"
href="{{ url_for('static', filename='style/main.css') }}"
/>
2024-01-25 01:19:00 +00:00
<link rel="icon" href="{{ config.get("favicon") }}">
2024-01-23 16:31:46 +00:00
{# <script src="{{ url_for('static', filename='lib/htmx.min.js') }}"></script> #}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>