aboutsummaryrefslogtreecommitdiff
path: root/src/templates/base.html
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-05-18 22:00:32 -0400
committerRosa <rosaontheweb@proton.me>2026-05-18 22:00:32 -0400
commit7e2c764b24505e0f74e970d627f052899b94e374 (patch)
treec2ae3c412002d4f8e66fc7700fa839d5df4d7fd5 /src/templates/base.html
parent1f0749100b22c17272b4d294e1db3034097b57ea (diff)
continue work on website build system
Diffstat (limited to 'src/templates/base.html')
-rw-r--r--src/templates/base.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/templates/base.html b/src/templates/base.html
new file mode 100644
index 0000000..0da5dd2
--- /dev/null
+++ b/src/templates/base.html
@@ -0,0 +1,51 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <title>{{title}} - the evil transgenders club</title>
+ <style>
+ :root {
+ --trans-blue: #5bcefa;
+ --trans-pink: #f5a9b8;
+ }
+
+ body {
+ background: black;
+ color: white;
+ font-family: monospace;
+ }
+
+ h1 {
+ color: var(--trans-blue);
+ text-align: center;
+ }
+
+ .trans-shadow {
+ text-shadow: 1px 1px var(--trans-pink), 2px 2px white, 3px 3px var(--trans-pink), 4px 4px var(--trans-blue);
+ }
+
+ .subtitle {
+ text-align: center;
+ }
+
+ .main-navigation {
+ text-align: center;
+ }
+
+ a {
+ color: #fff;
+ }
+
+ a:hover {
+ background-color: #fff;
+ color: #000;
+ }
+ </style>
+</head>
+
+<body>
+ <header>
+ <h1 class="trans-shadow">the evil transgenders club</h1>
+ </header>
+ {{body}}
+</body>
+</html>