templates/layout.html
{{define "layout"}}
<!doctype html>
<html>
<head>
<style>
body {background-color: #222222;}
a {color: #ffffff;}
pre {color: #ffffff;}
sub {color: #4e4e4e;}
h1,h2,h3,h4 {color: #ffffff;}
p {color: #ffffff96;}
</style>
<!-- a j3s.sh production -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22><text y=%2226%22 font-size=%2226%22>💀</text></svg>">
<title>{{template "title"}}</title>
</head>
<body>
<h1><a href="/">💀</a> existentialcrisis.sh</h1>
<p><a href="/features.html">features</a> <a href="/pricing.html">pricing</a>
{{template "body"}}
</body>
</html>
{{end}}