phoenix/templates/head.html.tmpl
2023-07-21 19:46:04 +05:00

12 lines
630 B
Cheetah

{{define "head"}}
<title>Phoenix</title>
<meta charset="utf-8" />
<meta name="description" content="A minimalistic start page with your collection of links to important sites." />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/assets/css/base.css" />
<link rel="icon" type="image/png" href="/assets/icons/favicon-16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="/assets/icons/favicon-32.png" sizes="32x32" />
<link rel="icon" type="image/svg+xml" href="/assets/icons/favicon.svg" />
<link rel="apple-touch-icon" href="/assets/icons/favicon-180.png" />
{{end}}