templates/layout.html
{{define "layout"}} <!doctype html> <html> <head> <style> #main, #header, aside { max-width: 444px; margin: 0 auto; padding: 0; } nav ul { list-style: none; padding: 0; margin: 0 45px 30px 0; float: left; } .grayscale { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); filter: grayscale(100%); } </style> <meta charset="utf-8"> <title>{{template "title"}}</title> <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>"> </head> <div id="main"><body class="grayscale"> <h1><a href="/"><img src="/static/scrombles.png" alt="scrombles the cat"></a> jes shit hell</h1> <p> <a href="/ideas.html">ideas</a> <a href="/movies.html">movies</a> <a href="/blog.html">bl0g</a> <a href="/about.html">about</a> | <a href="https://snap.as/j3s">pics -></a> <a href="https://git.j3s.sh">git -></a> </p> <hr> {{template "body"}} </div></body> </html> {{end}}