phoenix/templates/fragments/head.html.tmpl

17 lines
709 B
Cheetah
Raw Normal View History

2023-04-06 10:36:11 +05:00
{{define "head"}}
<title>{{ .title }}</title>
2023-04-06 10:36:11 +05:00
<meta charset="utf-8" />
2023-07-21 19:46:04 +05:00
<meta name="description" content="A minimalistic start page with your collection of links to important sites." />
2023-04-06 10:36:11 +05:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
2023-07-21 19:38:37 +05:00
<link rel="stylesheet" href="/assets/css/base.css" />
2023-09-03 19:08:33 +05:00
<link rel="icon" type="image/png" href="/assets/favicons/favicon-16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="/assets/favicons/favicon-32.png" sizes="32x32" />
<link rel="icon" type="image/svg+xml" href="/assets/favicons/favicon.svg" />
<link rel="apple-touch-icon" href="/assets/favicons/favicon-180.png" />
2023-11-02 21:20:10 +05:00
<style>
body {
font-family: {{ .fontFamily }};
2023-11-02 21:20:10 +05:00
}
</style>
2023-04-06 10:36:11 +05:00
{{end}}