aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorJJ <nicetry@noemail.com>2025-03-19 14:53:53 +0000
committerJJ <nicetry@noemail.com>2025-03-19 14:53:53 +0000
commit84b036b926d90b52956350d99b3a070b3dd1d7ac (patch)
treef7e40a6ef8f0eb56136340f9638dd6a17b5366e1 /templates/base.html
first commit
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..64ae319
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <title>index.cooking - {% block title %}{% endblock %}</title>
+ <script src="/static/scripts/htmx.js" defer></script>
+ <link href="/static/style/style.css" rel="stylesheet" />
+ </head>
+ <body>
+ {% include "/components/header.html" %}
+ <h1>{% block heading %}Some heading!{% endblock %}</h1>
+ {% block content %}{% endblock %}
+ </body>
+</html>