1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/src/frontend/index.html

43 lines
1.2 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
2020-09-13 18:54:31 +08:00
<base href="<%= Config.Client.urlBase %>/"/>
<meta charset="UTF-8">
2017-07-15 22:09:48 +08:00
<title>Loading..</title>
<link rel="shortcut icon" href="assets/icon.png">
<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-01-16 17:36:44 +08:00
<link rel="apple-touch-icon" href="assets/icon.png">
2020-09-13 19:44:14 +08:00
<link rel="manifest" crossorigin="use-credentials" href="manifest.json">
2017-07-14 05:39:09 +08:00
<link rel="stylesheet"
2017-07-15 18:47:11 +08:00
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.4/css/bootstrap3/bootstrap-switch.css">
2021-04-26 01:07:02 +08:00
2017-07-15 18:47:11 +08:00
<script>
2020-09-13 18:54:31 +08:00
var ServerInject = {user: <%- JSON.stringify(user); %>, ConfigInject: <%- JSON.stringify(Config); %>}
</script>
2017-07-18 00:30:16 +08:00
<%- customHTMLHead %>
</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>
<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">
<img src="assets/icon.png" style="max-width: 256px"/>
<h2>Loading...</h2>
</div>
2018-05-13 00:46:56 +08:00
</app-pi-gallery2>
</body>
</html>