mirror of
https://github.com/antoniomika/sish.git
synced 2025-09-26 19:21:15 +08:00
22 lines
705 B
Cheetah
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}}
|