summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2023-10-31 23:23:51 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2023-10-31 23:23:51 +0100
commitef15a6ec8f14c2398cfd28786c83072888690718 (patch)
tree824ada8072ac1e0ee4870989679cf5deb7d99bd1 /templates/base.html
oijoij
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..f3c81fb
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8" />
+ <title>Steven Le Rouzic</title>
+ <link rel="preconnect" href="https://fonts.googleapis.com">
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+ <link href="https://fonts.googleapis.com/css2?family=PT+Serif&family=PT+Serif+Caption&family=Roboto+Mono&display=swap" rel="stylesheet">
+ <link rel="stylesheet" type="text/css" href="{{ get_url(path="theme.css") }}" />
+ <script src="https://unpkg.com/htmx.org@1.9.6"></script>
+</head>
+<body hx-boost="true">
+ {% block content %}{% endblock %}
+</body>
+</html>
+