about summary refs log tree commit diff
path: root/templates/base.html
diff options
context:
space:
mode:
authorgennyble <gen@nyble.dev>2024-03-13 05:32:02 -0500
committergennyble <gen@nyble.dev>2024-03-13 05:33:32 -0500
commit588919965350beefc08d8e382de727eb21295b0a (patch)
treeb523e54ff73907b40f754f81ac6e6117dce56e9c /templates/base.html
parent0b94c2293df9df5c1ff5307d2f169c3c30c02bc6 (diff)
download∞-588919965350beefc08d8e382de727eb21295b0a.tar.gz
∞-588919965350beefc08d8e382de727eb21295b0a.zip
march 13th, 2024
this is what was published on the 10th, here.
https://amble.quest/notice/AfhzCKhLrynnNg5Qsi
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..30c7a45
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
+	<meta charset="utf-8" />
+
+	<link rel="icon" type="image/gif" href="/faces/triblur/triblur_94.gif" />
+
+	<title>{title}</title>
+
+	<link rel="stylesheet" href="/styles/common.css" />
+	{%pattern styles}
+	<link rel="stylesheet" href="{style}" />
+	{%end}
+</head>
+
+<body>
+	<ul id="nav-access">
+		<li><a href="#main-content">Skip to main content</a></li>
+	</ul>
+	{%wrapped-content}
+</body>
+
+</html>
\ No newline at end of file