diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2023-10-31 23:23:51 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2023-10-31 23:23:51 +0100 |
commit | ef15a6ec8f14c2398cfd28786c83072888690718 (patch) | |
tree | 824ada8072ac1e0ee4870989679cf5deb7d99bd1 /templates/base.html |
oijoij
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 16 |
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>
+
|