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/srv/src/http/tpl/base.html

28 lines
625 B

<!DOCTYPE html>
<html>
<head>
<style>{{ StaticInlineCSS "new.css" }}</style>
<style>{{ StaticInlineCSS "mediocre.css" }}</style>
</head>
<body>
<header>
<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" . }}
</body>
</html>