2018-08-03 15:17:13 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2018-07-27 17:31:39 +02:00
|
|
|
<head>
|
2019-05-03 18:57:28 +02:00
|
|
|
<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">
|
|
|
|
|
2019-12-11 14:10:20 +01:00
|
|
|
<title>{{ .clientConfig.title }}</title>
|
2019-05-03 18:57:28 +02:00
|
|
|
|
2019-12-11 14:10:20 +01:00
|
|
|
<meta property="og:title" content="{{ .clientConfig.title }}: {{ .clientConfig.subtitle }}"/>
|
|
|
|
<meta property="og:image" content="{{ .clientConfig.url }}api/v1/preview"/>
|
|
|
|
<meta property="og:url" content="{{ .clientConfig.url }}"/>
|
|
|
|
<meta property="og:description" content="{{ .clientConfig.description }}"/>
|
2019-05-03 18:57:28 +02:00
|
|
|
|
|
|
|
<meta name="twitter:card" content="summary_large_image"/>
|
2019-12-11 14:10:20 +01:00
|
|
|
<meta name="twitter:title" content="{{ .clientConfig.title }}: {{ .clientConfig.subtitle }}"/>
|
|
|
|
<meta name="twitter:description" content="{{ .clientConfig.description }}"/>
|
|
|
|
<meta name="twitter:image" content="{{ .clientConfig.url }}api/v1/preview"/>
|
|
|
|
<meta name="twitter:site" content="{{ .clientConfig.twitter }}"/>
|
|
|
|
|
|
|
|
<meta name="author" content="{{ .clientConfig.author }}">
|
|
|
|
<meta name="description" content="{{ .clientConfig.description }}"/>
|
2019-05-03 18:57:28 +02:00
|
|
|
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
2019-05-22 13:55:11 +02:00
|
|
|
<link rel="apple-touch-icon" href="/static/favicons/favicon.png">
|
|
|
|
<link rel="icon" type="image/png" href="/static/favicons/favicon.png"/>
|
2019-05-03 18:57:28 +02:00
|
|
|
|
2019-11-19 21:28:44 +01:00
|
|
|
<link rel="stylesheet" href="/static/build/app.css?{{ .clientConfig.cssHash }}">
|
2019-05-22 13:55:11 +02:00
|
|
|
<link rel="manifest" href="/static/manifest.json">
|
2019-05-03 18:57:28 +02:00
|
|
|
|
|
|
|
<script>
|
2019-11-17 06:21:43 +01:00
|
|
|
window.clientConfig = {{ .clientConfig }};
|
2019-05-03 18:57:28 +02:00
|
|
|
</script>
|
2018-07-27 17:31:39 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!--[if lt IE 8]>
|
2019-05-03 18:57:28 +02:00
|
|
|
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
|
|
|
|
your browser</a> to improve your experience.</p>
|
2018-07-27 17:31:39 +02:00
|
|
|
<![endif]-->
|
|
|
|
|
2019-05-19 18:58:30 +02:00
|
|
|
<div id="photoprism" class="container">
|
2019-12-10 20:07:31 +01:00
|
|
|
<div class="loading rainbow">
|
2019-05-03 18:57:28 +02:00
|
|
|
</div>
|
2018-07-27 17:31:39 +02:00
|
|
|
</div>
|
2019-05-07 21:41:27 +02:00
|
|
|
|
2019-11-17 00:55:40 +01:00
|
|
|
<div id="p-busy-overlay"></div>
|
|
|
|
|
2019-12-10 20:13:43 +01:00
|
|
|
<script src="/static/build/app.js?{{ .clientConfig.jsHash }}"></script>
|
2018-07-27 17:31:39 +02:00
|
|
|
</body>
|
2019-05-03 18:57:28 +02:00
|
|
|
</html>
|