repos / pico

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

pico / pubsub / html
Eric Bower · 09 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        <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
10
11        <meta name="keywords" content="pubsub, ssh, event, publish, subscribe" />
12        {{template "meta" .}}
13
14        <link rel="stylesheet" href="https://pico.sh/smol.css" />
15    </head>
16    <body {{template "attrs" .}}>{{template "body" .}}</body>
17</html>
18{{end}}