2017-06-10 22:32:56 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2020-09-13 12:54:31 +02:00
|
|
|
<base href="<%= Config.Client.urlBase %>/"/>
|
2017-06-10 22:32:56 +02:00
|
|
|
<meta charset="UTF-8">
|
2017-07-15 16:09:48 +02:00
|
|
|
<title>Loading..</title>
|
2017-06-10 22:32:56 +02:00
|
|
|
<link rel="shortcut icon" href="assets/icon.png">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2017-07-15 12:47:11 +02:00
|
|
|
|
2020-09-13 13:44:14 +02:00
|
|
|
<meta name="theme-color" content="#000000" />
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
2022-03-30 22:18:02 +02:00
|
|
|
|
2022-01-16 10:36:44 +01:00
|
|
|
<link rel="apple-touch-icon" href="assets/icon.png">
|
2022-03-30 22:18:02 +02:00
|
|
|
|
2020-09-13 13:44:14 +02:00
|
|
|
<link rel="manifest" crossorigin="use-credentials" href="manifest.json">
|
|
|
|
|
2017-07-13 23:39:09 +02:00
|
|
|
<link rel="stylesheet"
|
2017-07-15 12:47:11 +02:00
|
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.4/css/bootstrap3/bootstrap-switch.css">
|
2021-04-25 19:07:02 +02:00
|
|
|
|
2017-07-15 12:47:11 +02:00
|
|
|
|
2018-05-12 12:19:51 -04:00
|
|
|
<script>
|
2020-09-13 12:54:31 +02:00
|
|
|
var ServerInject = {user: <%- JSON.stringify(user); %>, ConfigInject: <%- JSON.stringify(Config); %>}
|
2018-05-12 12:19:51 -04:00
|
|
|
</script>
|
2017-07-17 18:30:16 +02:00
|
|
|
|
2022-03-30 22:18:02 +02:00
|
|
|
<script>
|
|
|
|
<%- customHTMLHead %>
|
|
|
|
</script>
|
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
</head>
|
|
|
|
|
2018-02-03 19:50:42 -05:00
|
|
|
<body style="overflow-y: scroll; padding-right: 0 !important;">
|
2018-05-12 12:46:56 -04:00
|
|
|
<app-pi-gallery2>
|
2018-12-07 22:06:13 +01:00
|
|
|
<div style="position: absolute;
|
2018-05-12 12:46:56 -04:00
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2018-05-15 21:30:41 -04:00
|
|
|
-webkit-transform: translate(-50%, -50%);
|
2018-05-12 12:46:56 -04:00
|
|
|
left: 50%;
|
|
|
|
text-align: center">
|
2018-12-07 22:06:13 +01:00
|
|
|
<img src="assets/icon.png" style="max-width: 256px"/>
|
|
|
|
<h2>Loading...</h2>
|
|
|
|
</div>
|
2018-05-12 12:46:56 -04:00
|
|
|
</app-pi-gallery2>
|
2017-06-10 22:32:56 +02:00
|
|
|
</body>
|
|
|
|
</html>
|