vlt 0.0.0-0.1730219793883 → 0.0.0-0.1730226262115

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/gui/explore.html CHANGED
@@ -1,32 +1,34 @@
1
1
  <!doctype html>
2
2
  <html lang="en">
3
-
4
- <head>
5
- <!-- The first thing in any HTML file should be the charset -->
6
- <meta charset="utf-8">
7
-
8
- <!-- Make the page mobile compatible -->
9
- <meta name="viewport" content="width=device-width, initial-scale=1">
10
-
11
- <!-- Allow installing the app to the homescreen -->
12
- <meta name="mobile-web-app-capable" content="yes">
13
-
14
- <link rel="icon" href="/favicon.ico" />
15
- <link rel="stylesheet" href="main.css">
16
- <title>vlt | Explorer</title>
17
- </head>
18
-
19
- <body>
20
- <!-- Display a message if JS has been disabled on the browser. -->
21
- <noscript>If you're seeing this message, that means
22
- <strong>JavaScript has been disabled on your browser</strong>, please
23
- <strong>enable JS</strong> to make this app work.</noscript>
24
-
25
- <!-- The app hooks into this div -->
26
- <div id="app"></div>
27
-
28
- <script src="index.js"></script>
29
- </body>
30
-
3
+ <head>
4
+ <!-- The first thing in any HTML file should be the charset -->
5
+ <meta charset="utf-8" />
6
+
7
+ <!-- Make the page mobile compatible -->
8
+ <meta
9
+ name="viewport"
10
+ content="width=device-width, initial-scale=1" />
11
+
12
+ <!-- Allow installing the app to the homescreen -->
13
+ <meta name="mobile-web-app-capable" content="yes" />
14
+
15
+ <link rel="icon" href="/favicon.ico" />
16
+ <link rel="stylesheet" href="main.css" />
17
+ <title>vlt | Explorer</title>
18
+ </head>
19
+
20
+ <body>
21
+ <!-- Display a message if JS has been disabled on the browser. -->
22
+ <noscript
23
+ >If you're seeing this message, that means
24
+ <strong>JavaScript has been disabled on your browser</strong>,
25
+ please <strong>enable JS</strong> to make this app
26
+ work.</noscript
27
+ >
28
+
29
+ <!-- The app hooks into this div -->
30
+ <div id="app"></div>
31
+
32
+ <script src="index.js"></script>
33
+ </body>
31
34
  </html>
32
-