2024-04-27 21:10:24 +02:00
<!DOCTYPE html>
< html { { block " document-root-attrs " . } } { { end } } lang = "en" id = "top" >
< head >
{{ block "document-head-before" . }}{{ end }}
< title > {{ block "document-title" . }}{{ end }}< / title >
< meta charset = "UTF-8" >
< meta name = "color-scheme" content = "dark" >
2024-05-11 03:54:43 +02:00
< meta name = "viewport" content = "width=device-width, initial-scale=1.0, viewport-fit=cover" >
2024-05-09 00:51:04 +02:00
< meta name = "apple-mobile-web-app-capable" content = "yes" >
< meta name = "mobile-web-app-capable" content = "yes" >
< meta name = "apple-mobile-web-app-status-bar-style" content = "black-translucent" >
< meta name = "apple-mobile-web-app-title" content = "Glance" >
2024-05-09 05:05:25 +02:00
< meta name = "theme-color" content = "{{ if ne nil .App.Config.Theme.BackgroundColor }}{{ .App.Config.Theme.BackgroundColor }}{{ else }}hsl(240, 8%, 9%){{ end }}" >
2024-05-09 00:51:04 +02:00
< link rel = "apple-touch-icon" sizes = "512x512" href = "/static/app-icon.png" >
2024-05-12 15:27:25 +02:00
< link rel = "icon" type = "image/png" sizes = "50x50" href = "/static/favicon.png" >
2024-05-09 00:51:04 +02:00
< link rel = "manifest" href = "/static/manifest.json" >
2024-04-27 21:10:24 +02:00
< link rel = "icon" type = "image/png" href = "/static/favicon.png" / >
< link rel = "stylesheet" href = "/static/main.css?v={{ .App.Config.Server.StartedAt.Unix }}" >
< script async src = "/static/main.js?v={{ .App.Config.Server.StartedAt.Unix }}" > < / script >
{{ block "document-head-after" . }}{{ end }}
< / head >
< body >
{{ template "document-body" . }}
< / body >
< / html >