aboutsummaryrefslogtreecommitdiff
path: root/src/templates/base.html
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-05-27 12:23:23 -0400
committerRosa <rosaontheweb@proton.me>2026-05-27 12:23:23 -0400
commit72983cf263053cd40dafbd5f1cb63d3f0b9f1eb8 (patch)
tree23a25d1b2a2fd24ceeefcf3cb35e566d367cff58 /src/templates/base.html
parentf136bc6cb5c37e55e73ff5f70618a9f950461bc4 (diff)
members page added
Diffstat (limited to '')
-rw-r--r--src/templates/base.html19
1 files changed, 15 insertions, 4 deletions
diff --git a/src/templates/base.html b/src/templates/base.html
index d089b5b..11f6f57 100644
--- a/src/templates/base.html
+++ b/src/templates/base.html
@@ -3,6 +3,9 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1,width=device-width" />
+ <!--
+ <link rel="preload" href="/FiraCodeNerdFontMono-Regular.ttf" as="font" type="font/ttf" />
+ -->
<title>{{title}} - the evil transgenders club</title>
<style>
:root {
@@ -12,6 +15,7 @@
@font-face {
font-family: 'FiraCode Nerd Font Mono';
+ font-weight: regular;
src: url("/FiraCodeNerdFontMono-Regular.ttf");
}
@@ -19,6 +23,7 @@
background: black;
color: white;
font-family: 'FiraCode Nerd Font Mono', monospace;
+ font-size: 10pt;
margin-left: 15%;
margin-right: 15%;
}
@@ -60,11 +65,11 @@
}
#main-navigation ul li::before {
- content: " /* ";
+ content: "/* ";
}
#main-navigation ul li::after {
- content: " */ ";
+ content: " */";
}
footer {
@@ -93,7 +98,12 @@
color: #ff5555;
font-style: normal;
}
+
+ .odd {
+ background-color: #111;
+ }
</style>
+ {{extraHead}}
</head>
<body>
@@ -102,13 +112,14 @@
<nav id="main-navigation">
<ul>
<li><a href="/">home</a></li>
- <li><a rel="external" href="https://git.eviltransgenders.club">git</a></li>
+ <li><a href="/members">members</a></li>
+ <li><a href="/services">services</a></li>
</ul>
</nav>
</header>
{{body}}
<footer>
- <p>made with <em class="heart">&lt;3</em> // <a rel="external" href="https://git.eviltransgenders.club/www.eviltransgenders.club">view the source</a>.</p>
+ <p>made with <em class="heart">&hearts;</em> // <a rel="external" href="https://git.eviltransgenders.club/www.eviltransgenders.club">view the source</a>.</p>
</footer>
</body>
</html>