what2watch/templates/base.html

30 lines
663 B
HTML
Raw Normal View History

2023-05-17 20:40:06 +00:00
<!DOCTYPE html>
<html lang="en">
2023-09-22 23:51:48 +00:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{{ title }} - What 2 Watch{% endblock %}</title>
2023-12-30 20:18:08 +00:00
<link rel="stylesheet" href="/assets/ww.css">
2023-09-22 23:51:48 +00:00
{% block head %}{% endblock %}
</head>
<body>
<div id="header">
{% block header %}{% include "header_with_user.html" %}{% endblock %}
</div>
<div id="content">
2023-12-26 20:26:14 +00:00
<hr />
2023-09-22 23:51:48 +00:00
{% block content %}{% endblock %}
</div>
<div id="footer">
{% block footer %}{% endblock %}
</div>
2023-12-30 20:18:08 +00:00
<script src="/assets/htmx.min.js"></script>
2023-09-22 23:51:48 +00:00
</body>
2023-05-17 20:40:06 +00:00
</html>