summaryrefslogtreecommitdiff
path: root/srv/src/http/tpl/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'srv/src/http/tpl/base.html')
-rw-r--r--srv/src/http/tpl/base.html65
1 files changed, 11 insertions, 54 deletions
diff --git a/srv/src/http/tpl/base.html b/srv/src/http/tpl/base.html
index 7a31156..595ffe3 100644
--- a/srv/src/http/tpl/base.html
+++ b/srv/src/http/tpl/base.html
@@ -1,70 +1,27 @@
<!DOCTYPE html>
-<html lang="en">
+<html>
<head>
- <meta charset="utf-8">
-
<link rel="stylesheet" href="{{ StaticURL "new.css" }}">
-
- <style type="text/css">
-
- html {
- font-family: Georgia, serif;
- }
-
- h1, h2, h3, h4, h5, h6, .button-primary, .button, header, footer {
- font-family: var(--nc-font-sans);
- }
-
- h1 a,
- h2 a,
- h3 a,
- h4 a,
- h5 a,
- h6 a {
- text-decoration: none;
- color: var(--nc-tx-1);
- }
-
- ul {
- list-style: circle;
- }
-
- hr {
- margin: 2rem 0 2rem 0;
- border-color: var(--nc-bg-3);
- }
-
- </style>
-
+ <link rel="stylesheet" href="{{ StaticURL "mediocre.css" }}">
</head>
<body>
<header>
-
- <p>
- <a href="{{ BlogURL "/" }}"><strong>Mediocre Blog</strong></a>
- by
- <a href="https://mediocregopher.com">mediocregopher</a>
- &nbsp;•&nbsp;
- <a href="{{ BlogURL "follow" }}">Follow</a>
- &nbsp;•&nbsp;
- <a href="{{ BlogURL "feed.xml" }}">RSS</a>
- </p>
-
+ <a href="{{ BlogURL "/" }}"><strong>Mediocre Blog</strong></a>
+ by
+ <a href="https://mediocregopher.com">mediocregopher</a>
+ &nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;
+ <a href="{{ BlogURL "follow" }}">Follow</a>
+ &nbsp;/&nbsp;
+ <a href="{{ BlogURL "feed.xml" }}">RSS</a>
+ &nbsp;/&nbsp;
+ License: <a href="{{ StaticURL "wtfpl.txt" }}">WTFPL</a>
</header>
{{ template "body" . }}
- <footer>
- <hr/>
- <p>
- Unless otherwised specified, all works are licensed under the
- <a href="{{ StaticURL "wtfpl.txt" }}">WTFPL</a>.
- </p>
- </footer>
-
</body>
</html>