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.html103
1 files changed, 55 insertions, 48 deletions
diff --git a/srv/src/http/tpl/base.html b/srv/src/http/tpl/base.html
index ff585b1..7a31156 100644
--- a/srv/src/http/tpl/base.html
+++ b/srv/src/http/tpl/base.html
@@ -3,60 +3,67 @@
<head>
<meta charset="utf-8">
- <link rel="stylesheet" href="{{ StaticURL "normalize.css" }}">
- <link rel="stylesheet" href="{{ StaticURL "skeleton.css" }}">
- <link rel="stylesheet" href="{{ StaticURL "main.css" }}">
- <link rel="stylesheet" href="{{ StaticURL "fontawesome/css/all.css" }}">
+
+ <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>
+
</head>
<body>
- <div class="container">
-
- <header id="title-header" role="banner">
- <div class="row">
- <div class="seven columns" style="margin-bottom: 3rem;">
- <h1 class="title">
- <a href="{{ BlogURL "/" }}">Mediocre Blog</a>
- </h1>
- <div class="light social">
- <span>By Brian Picciano</span>
- <span>
- Even more @
- <a href="https://mediocregopher.eth.link" target="_blank">https://mediocregopher.eth.link</a>
- </span>
- </div>
- </div>
-
- <div class="five columns light">
- <span style="display:block; margin-bottom:0.5rem;">Get notified when new posts are published!</span>
- <a href="{{ BlogURL "follow" }}">
- <button class="button-primary">
- <i class="far fa-envelope"></i>
- Follow
- </button><!-- no space here, or there's a weird underline --></a>
-
- <a href="{{ BlogURL "feed.xml" }}">
- <button class="button">
- <i class="fas fa-rss"></i>
- RSS
- </button>
- </a>
- </div>
-
- </div>
- </header>
-
- {{ template "body" . }}
-
- <footer>
- <p class="license light">
+ <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>
+
+ </header>
+
+ {{ template "body" . }}
+
+ <footer>
+ <hr/>
+ <p>
Unless otherwised specified, all works are licensed under the
<a href="{{ StaticURL "wtfpl.txt" }}">WTFPL</a>.
- </p>
- </footer>
-
- </div>
+ </p>
+ </footer>
</body>