main pgit / html / base.layout.tmpl
Eric Bower  ·  2026-05-13
 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 code forge repo repository" />
10
11    {{template "meta" .}}
12
13    <link rel="stylesheet" href="{{.Repo.RootRelative}}vars.css" />
14    <link rel="stylesheet" href="{{.Repo.RootRelative}}main.css" />
15  </head>
16  <body>
17    <header class="box">{{template "header" .}}</header>
18    <main>{{template "content" .}}</main>
19    <footer>{{template "footer" .}}</footer>
20  </body>
21</html>
22{{end}}