repos / pico

pico services - prose.sh, pastes.sh, imgs.sh, feeds.sh, pgs.sh
git clone https://github.com/picosh/pico.git

pico / auth / html
Antonio Mika · 07 Oct 23

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="static, site, hosting" />
12
13    <link rel="stylesheet" href="/main.css" />
14
15    {{template "meta" .}}
16  </head>
17  <body {{template "attrs" .}}>{{template "body" .}}</body>
18</html>
19{{end}}