mirror of
https://github.com/glanceapp/glance.git
synced 2024-11-28 19:35:00 +01:00
26 lines
1.4 KiB
HTML
26 lines
1.4 KiB
HTML
<!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">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
|
<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">
|
|
<meta name="theme-color" content="{{ if ne nil .App.Config.Theme.BackgroundColor }}{{ .App.Config.Theme.BackgroundColor }}{{ else }}hsl(240, 8%, 9%){{ end }}">
|
|
<link rel="apple-touch-icon" sizes="512x512" href="{{ .App.AssetPath "app-icon.png" }}">
|
|
<link rel="icon" type="image/png" sizes="50x50" href="{{ .App.AssetPath "favicon.png" }}">
|
|
<link rel="manifest" href="{{ .App.AssetPath "manifest.json" }}">
|
|
<link rel="icon" type="image/png" href="{{ .App.AssetPath "favicon.png" }}" />
|
|
<link rel="stylesheet" href="{{ .App.AssetPath "main.css" }}">
|
|
<script type="module" src="{{ .App.AssetPath "main.js" }}"></script>
|
|
{{ block "document-head-after" . }}{{ end }}
|
|
</head>
|
|
<body>
|
|
{{ template "document-body" . }}
|
|
</body>
|
|
</html>
|