diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-08-16 21:32:50 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-08-16 21:32:50 -0600 |
commit | bf8412969a60b5da29d622418e8a4efd9d444a12 (patch) | |
tree | 143dc1a4bbde5622705d732ad1d56aac637d9c38 /srv/src/http/tpl/base.html | |
parent | 5bc4c2fe4eb2dd401380493d95e05badd7f2bf5d (diff) |
finish switching to classless, got a color scheme worked out too
Diffstat (limited to 'srv/src/http/tpl/base.html')
-rw-r--r-- | srv/src/http/tpl/base.html | 65 |
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> - • - <a href="{{ BlogURL "follow" }}">Follow</a> - • - <a href="{{ BlogURL "feed.xml" }}">RSS</a> - </p> - + <a href="{{ BlogURL "/" }}"><strong>Mediocre Blog</strong></a> + by + <a href="https://mediocregopher.com">mediocregopher</a> + // + <a href="{{ BlogURL "follow" }}">Follow</a> + / + <a href="{{ BlogURL "feed.xml" }}">RSS</a> + / + 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> |