mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
24 lines
786 B
Text
24 lines
786 B
Text
<!DOCTYPE html>
|
|
<html lang="en" dir="auto" data-color-mode="dark" data-light-theme="light" data-dark-theme="dark" class="loading">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0{{if not .config.Settings.UI.Zoom }}, maximum-scale=1.0, user-scalable=no{{end}}">
|
|
|
|
<title>{{ .config.SiteTitle }}</title>
|
|
|
|
{{template "favicons.gohtml" .}}
|
|
|
|
<link rel="stylesheet" href="{{ .config.CssUri }}">
|
|
<link rel="manifest" href="{{ .config.ManifestUri }}" crossorigin="use-credentials">
|
|
|
|
<script>
|
|
window.__CONFIG__ = {{ .config }};
|
|
</script>
|
|
</head>
|
|
<body class="{{ .config.Flags }} nojs">
|
|
|
|
{{template "app.gohtml" .}}
|
|
{{template "app.js.gohtml" .}}
|
|
</body>
|
|
</html>
|