what2watch/templates/base.html

21 lines
611 B
HTML
Raw Normal View History

2023-05-17 20:40:06 +00:00
<!DOCTYPE html>
<html lang="en">
2023-06-13 21:33:31 +00:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{{ title }} - Witch Watch{% endblock %}</title>
{% block head %}{% endblock %}
</head>
<body>
<div id="header">
{% block header %}{% include "header_with_user.html" %}{% endblock %}
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
<div id="footer">
{% block footer %}{% endblock %}
</div>
</body>
2023-05-17 20:40:06 +00:00
</html>