queen/templates/base.html

31 lines
760 B
HTML
Raw Normal View History

2024-02-26 00:34:32 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{{ title }} - What 2 Watch{% endblock %}</title>
<link rel="stylesheet" href="/assets/ww.css">
2024-03-11 02:23:51 +00:00
<link rel="stylesheet" href="/assets/css/index.css?v=1.21.4~0">
<link rel="stylesheet" href="/assets/css/theme-forgejo-auto.css?v=1.21.4~0">
2024-02-26 00:34:32 +00:00
{% block head %}{% endblock %}
</head>
<body>
<div id="header">
{% block header %}{% endblock %}
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
<div id="footer">
{% block footer %}{% endblock %}
</div>
<script src="/assets/htmx.min.js"></script>
</body>
</html>