A fast and simple blog backend.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
mediocre-blog/src/http/tpl/base.html

33 lines
974 B

<!DOCTYPE html>
<html>
<head>
<style>{{ StaticInlineCSS "new.css" }}</style>
<style>{{ StaticInlineCSS "mediocre.css" }}</style>
<link rel="apple-touch-icon" sizes="180x180" href="{{ StaticURL "favicon/apple-touch-icon.png" }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ StaticURL "favicon/favicon-32x32.png" }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ StaticURL "favicon/favicon-16x16.png" }}">
<link rel="manifest" href="{{ StaticURL "favicon/site.webmanifest" }}">
</head>
<body>
<header>
<a href="{{ BlogURL "/" }}"><strong>Mediocre Blog</strong></a>
by
<a href="https://mediocregopher.com">mediocregopher</a>
<br/>
<a href="{{ BlogURL "follow" }}">Follow</a>
&nbsp;/&nbsp;
<a href="{{ BlogURL "feed.xml" }}">RSS</a>
&nbsp;/&nbsp;
<a href="{{ StaticURL "wtfpl.txt" }}">License</a>
</header>
{{ template "body" . }}
</body>
</html>