repos / pico

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

pico / prose / html
Eric Bower · 08 Apr 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        <link rel="stylesheet" href="/smol.css" />
12        <link rel="stylesheet" href="/main.css" />
13
14        {{template "meta" .}}
15    </head>
16    <body {{template "attrs" .}}>{{template "body" .}}</body>
17</html>
18{{end}}