-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.81 KB
/
Copy pathindex.html
File metadata and controls
44 lines (44 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SwaggerEditor</title>
<link rel="preload" href="/static/media/splash-screen/loader.gif" as="image" type="image/gif" />
<link rel="preload" href="/static/media/splash-screen/logo.svg" as="image" type="image/svg+xml" />
<link rel="preload" href="/static/media/splash-screen/styles.css" as="style" type="text/css" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="SwaggerEditor" />
<meta http-equiv="Cache-control" content="no-cache, no-store, must-revalidate" />
<link rel="icon" href="/favicon-32x32.png" />
<link rel="apple-touch-icon" href="/favicon-32x32.png" />
<link rel="stylesheet" href="/static/media/splash-screen/styles.css" />
<link rel="manifest" href="/manifest.json" />
<script>
window.MonacoEnvironment = {
baseUrl: new URL('/static/js/', document.baseURI || location.href).toString(),
};
</script>
<script type="module" src="src/index.jsx"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="swagger-editor">
<div class="swagger-editor">
<div class="swagger-editor__splash-screen">
<figure class="swagger-editor__splash-screen-figure">
<img width="100%" src="/static/media/splash-screen/logo.svg" alt="Swagger Editor" />
<figcaption>%VITE_VERSION%</figcaption>
<img
width="25"
height="25"
class="swagger-editor__splash-screen-spinner"
src="/static/media/splash-screen/loader.gif"
alt="Loading..."
/>
</figure>
</div>
</div>
</div>
</body>
</html>