aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base.html
diff options
context:
space:
mode:
authorAhmed <git@gumx.cc>2026-06-01 22:19:27 +0300
committerAhmed <git@gumx.cc>2026-06-01 22:19:27 +0300
commitae72b8f9976a1c0cca66ff4cb31eadf311c677e7 (patch)
tree532e48d085bd0ea48265f2bd262df8856dd8340f /templates/base.html
init: moved to own site
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..0ac1173
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html lang="{{LANG}}">
+ <head>
+ {{> head.html}}
+ <title>gumx{{#PAGE_TITLE}}: {{PAGE_TITLE}}{{/PAGE_TITLE}}</title>
+ </head>
+ <body>
+ {{> header.html}}
+ <main{{#DIR}} dir="{{DIR}}"{{/DIR}}>{{{CONTENT}}}</main>
+ {{> footer.html}}
+ </body>
+</html>