Eric Bower
·
2024-10-22
base.html
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="git, collaboration, patch, requests" />
10 {{template "meta" .}}
11
12 <link rel="stylesheet" href="/static/smol.css" />
13 <link rel="stylesheet" href="/static/git-pr.css" />
14 <link rel="stylesheet" href="/static/vars.css" />
15 <link rel="stylesheet" href="/syntax.css" />
16 </head>
17 <body>{{template "body" .}}</body>
18</html>
19{{end}}