blob: be07b4a9e7b48649aa7bbd9a24256b9c63f78f0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{% block title %}Shifoo's Cafe{% endblock %}</title>
<link rel="stylesheet" href="{% static "css/style.css" %}" />
{% block head %}{% endblock %}
</head>
<body>
{% block body %}
<main>
{% block content %}{% endblock %}
</main>
{% endblock %}
<script src="{% static "js/htmx.min.js" %}"></script>
{% block scripts %}{% endblock %}
</body>
</html>
|