Eric Bower
·
26 Mar 24
base.layout.tmpl
1{{define "base"}}
2<!doctype html>
3<html lang="en">
4 <head>
5 <meta charset='utf-8'>
6 <meta name="viewport" content="width=device-width, initial-scale=1" />
7 <title>{{template "title" .}}</title>
8
9 <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
10
11 <meta name="keywords" content="pastebin, paste, copy, snippets" />
12 {{template "meta" .}}
13
14 <link rel="stylesheet" href="/smol.css" />
15 <link rel="stylesheet" href="/main.css" />
16 </head>
17 <body {{template "attrs" .}}>{{template "body" .}}</body>
18</html>
19{{end}}