2017-06-11 04:32:56 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2022-12-29 02:12:18 +08:00
|
|
|
<base href="<%= Config.Server.urlBase %>/"/>
|
2017-06-11 04:32:56 +08:00
|
|
|
<meta charset="UTF-8">
|
2017-07-15 22:09:48 +08:00
|
|
|
<title>Loading..</title>
|
2023-08-10 04:47:11 +08:00
|
|
|
<link rel="shortcut icon" href="icon_auto.svg">
|
2023-08-09 04:25:43 +08:00
|
|
|
<link rel="shortcut icon" sizes="256x256" href="icon.png" type="image/png">
|
2017-06-11 04:32:56 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2017-07-15 18:47:11 +08:00
|
|
|
|
2020-09-13 19:44:14 +08: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-31 04:18:02 +08:00
|
|
|
|
2023-08-10 04:47:11 +08:00
|
|
|
<link rel="apple-touch-icon" href="icon_auto.svg">
|
2023-08-09 04:25:43 +08:00
|
|
|
<link rel="apple-touch-icon" sizes="256x256" href="icon.png">
|
2022-03-31 04:18:02 +08:00
|
|
|
|
2020-09-13 19:44:14 +08:00
|
|
|
<link rel="manifest" crossorigin="use-credentials" href="manifest.json">
|
|
|
|
|
2018-05-13 00:19:51 +08:00
|
|
|
<script>
|
2020-09-13 18:54:31 +08:00
|
|
|
var ServerInject = {user: <%- JSON.stringify(user); %>, ConfigInject: <%- JSON.stringify(Config); %>}
|
2018-05-13 00:19:51 +08:00
|
|
|
</script>
|
2017-07-18 00:30:16 +08:00
|
|
|
|
2022-03-31 04:18:02 +08:00
|
|
|
<script>
|
|
|
|
<%- customHTMLHead %>
|
|
|
|
</script>
|
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
</head>
|
|
|
|
|
2018-02-04 08:50:42 +08:00
|
|
|
<body style="overflow-y: scroll; padding-right: 0 !important;">
|
2018-05-13 00:46:56 +08:00
|
|
|
<app-pi-gallery2>
|
2018-12-08 05:06:13 +08:00
|
|
|
<div style="position: absolute;
|
2018-05-13 00:46:56 +08:00
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2018-05-16 09:30:41 +08:00
|
|
|
-webkit-transform: translate(-50%, -50%);
|
2018-05-13 00:46:56 +08:00
|
|
|
left: 50%;
|
|
|
|
text-align: center">
|
2023-08-09 04:25:43 +08:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg"
|
|
|
|
class="d-inline-block align-top"
|
|
|
|
style="width: 200px;max-width: calc(50vw);max-height: calc(50vh);"
|
|
|
|
fill="currentcolor"
|
|
|
|
viewBox="<%- Config.Server.svgIcon.viewBox || '0 0 512 512' %>">
|
2023-08-26 06:50:11 +08:00
|
|
|
<!-- <%- "-->"+Config.Server.svgIcon.items+"<!--" %> -->
|
2023-08-09 04:25:43 +08:00
|
|
|
</svg>
|
|
|
|
<h2 style="margin-top: 1em">Loading...</h2>
|
2018-12-08 05:06:13 +08:00
|
|
|
</div>
|
2018-05-13 00:46:56 +08:00
|
|
|
</app-pi-gallery2>
|
2023-03-27 21:30:38 +08:00
|
|
|
|
|
|
|
<style>
|
|
|
|
<%- usedTheme %>
|
|
|
|
</style>
|
2017-06-11 04:32:56 +08:00
|
|
|
</body>
|
|
|
|
</html>
|