-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (83 loc) · 2.23 KB
/
Copy pathindex.html
File metadata and controls
89 lines (83 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#171717" />
<meta
name="description"
content="NocoBase administration console"
/>
<meta
data-rh="true"
property="og:image"
content="/logo-mark.png"
/>
<meta
data-rh="true"
name="twitter:image"
content="/logo-mark.png"
/>
<style>
.portal-bootstrap-loading {
display: flex;
min-height: 100svh;
width: 100%;
align-items: center;
justify-content: center;
background: oklch(0.985 0 0);
color: oklch(0.18 0 0);
}
.portal-bootstrap-loading svg {
width: 1.75rem;
height: 1.75rem;
animation: portal-bootstrap-spin 1s linear infinite;
}
html,
body {
margin: 0;
}
@keyframes portal-bootstrap-spin {
to {
transform: rotate(360deg);
}
}
@media (prefers-reduced-motion: reduce) {
.portal-bootstrap-loading svg {
animation: none;
}
}
</style>
<title>NocoBase</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
<div
class="portal-bootstrap-loading"
role="status"
aria-label="Loading application"
>
<svg viewBox="0 0 24 24" fill="none" aria-hidden="true">
<path
d="M21 12a9 9 0 1 1-6.219-8.56"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
</div>
<script type="module" src="/src/index.tsx"></script>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin development, run `pnpm dev`.
To create a production bundle, run `pnpm build`.
-->
</body>
</html>