Eric Bower
·
03 Sep 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 <meta name="keywords" content="blog, blogging, write, writing, hackers, developers, terminal" />
10
11 {{template "meta" .}}
12 </head>
13 <body {{template "attrs" .}}>{{template "body" .}}</body>
14</html>
15{{end}}