repos / starfx

supercharged async flow control library.
git clone https://github.com/neurosnap/starfx.git

starfx / docs / tmpl
Eric Bower · 30 Jul 24

base.layout.tmpl

 1{{define "base"}}
 2<!doctype html>
 3<html lang="en">
 4  <head>
 5    <title>{{template "title" .}} ยท starfx</title>
 6    <meta charset='utf-8'>
 7    <meta name="viewport" content="width=device-width, initial-scale=1" />
 8    <meta name="keywords" content="ngrok, sish, ssh, tunnel, self-hosted" />
 9    <link href="/logo.svg" rel="icon" type="image/svg+xml"/>
10    <link href="/logo.png" rel="icon" sizes="any" type="image/png"/>
11    <link rel="stylesheet" href="https://pico.sh/syntax.css" />
12    <link rel="stylesheet" href="https://pico.sh/smol.css" />
13    <link rel="stylesheet" href="/main.css" />
14    {{template "meta" .}}
15  </head>
16
17  <body {{template "attrs" .}}>
18    {{template "body" .}}
19  </body>
20</html>
21{{end}}