Files
Servo/docs/tmpl/base.layout.tmpl
Eric Bower c234cc7f7c docs: update styles (#329)
* chore: go tidy

* style: docs

* style: tweak
2025-01-08 14:00:54 -05:00

22 lines
705 B
Cheetah

{{define "base"}}
<!doctype html>
<html lang="en">
<head>
<title>{{template "title" .}}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="keywords" content="ngrok, sish, ssh, tunnel, self-hosted" />
<link href="/logo.svg" rel="icon" type="image/svg+xml"/>
<link href="/logo.png" rel="icon" sizes="any" type="image/png"/>
<link rel="stylesheet" href="https://pico.sh/syntax.css" />
<link rel="stylesheet" href="https://pico.sh/smol.css" />
<link rel="stylesheet" href="/main.css" />
{{template "meta" .}}
</head>
<body {{template "attrs" .}}>
{{template "body" .}}
</body>
</html>
{{end}}