1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/src/frontend/index.html

54 lines
1.6 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
2022-12-28 19:12:18 +01:00
<base href="<%= Config.Server.urlBase %>/"/>
<meta charset="UTF-8">
2017-07-15 16:09:48 +02:00
<title>Loading..</title>
<link rel="shortcut icon" href="icon.svg">
<link rel="shortcut icon" sizes="256x256" href="icon.png" type="image/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">
<link rel="apple-touch-icon" href="icon.svg">
<link rel="apple-touch-icon" sizes="256x256" href="icon.png">
2020-09-13 13:44:14 +02:00
<link rel="manifest" crossorigin="use-credentials" href="manifest.json">
<script>
2020-09-13 12:54:31 +02:00
var ServerInject = {user: <%- JSON.stringify(user); %>, ConfigInject: <%- JSON.stringify(Config); %>}
</script>
2017-07-17 18:30:16 +02:00
<script>
<%- customHTMLHead %>
</script>
</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>
<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">
<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' %>">
<path d="<%- Config.Server.svgIcon.path %>"/>
</svg>
<h2 style="margin-top: 1em">Loading...</h2>
</div>
2018-05-12 12:46:56 -04:00
</app-pi-gallery2>
2023-03-27 15:30:38 +02:00
<style>
<%- usedTheme %>
</style>
</body>
</html>