diff options
author | crupest <crupest@outlook.com> | 2023-07-10 18:28:54 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-07-10 18:28:54 +0800 |
commit | d8959bc897ccadb3083f59f31fc041b42f1b9466 (patch) | |
tree | 9624342bb75b752bc4257c4251aa4f8347f7ac95 /FrontEnd/index.html | |
parent | 158b467fff07981b43af81f6520d3dba06baeffa (diff) | |
download | timeline-d8959bc897ccadb3083f59f31fc041b42f1b9466.tar.gz timeline-d8959bc897ccadb3083f59f31fc041b42f1b9466.tar.bz2 timeline-d8959bc897ccadb3083f59f31fc041b42f1b9466.zip |
Now front end is ok!
Diffstat (limited to 'FrontEnd/index.html')
-rw-r--r-- | FrontEnd/index.html | 55 |
1 files changed, 29 insertions, 26 deletions
diff --git a/FrontEnd/index.html b/FrontEnd/index.html index 3cc5a580..5e8ffc77 100644 --- a/FrontEnd/index.html +++ b/FrontEnd/index.html @@ -1,30 +1,33 @@ <!DOCTYPE html>
<html lang="en">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width,initial-scale=1.0" />
- <link rel="icon" href="/favicon.ico" />
- <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
- <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
- <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
- <link rel="manifest" href="/site.webmanifest" />
- <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
- <meta name="msapplication-TileColor" content="#2d89ef" />
- <meta name="theme-color" content="#ffffff" />
+<head>
+ <meta charset="utf-8" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
+ <meta name="viewport" content="width=device-width,initial-scale=1.0" />
- <title>Timeline</title>
- </head>
- <body>
- <noscript>
- <strong>
- We're sorry but Timeline doesn't work properly without JavaScript
- enabled. Please enable it to continue.
- </strong>
- </noscript>
- <div id="app"></div>
- <div id="portal"></div>
- <script type="module" src="/src/index.tsx"></script>
- </body>
-</html>
+ <link rel="icon" href="./favicons/favicon.ico" />
+ <link rel="apple-touch-icon" sizes="180x180" href="./favicons/apple-touch-icon.png" />
+ <link rel="icon" type="image/png" sizes="32x32" href="./favicons/favicon-32x32.png" />
+ <link rel="icon" type="image/png" sizes="16x16" href="./favicons/favicon-16x16.png" />
+ <link rel="manifest" href="./favicons/site.webmanifest" />
+ <link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#5bbad5" />
+ <meta name="msapplication-TileColor" content="#2d89ef" />
+ <meta name="theme-color" content="#ffffff" />
+
+ <title>Timeline</title>
+</head>
+
+<body>
+ <noscript>
+ <strong>
+ We're sorry but Timeline doesn't work properly without JavaScript
+ enabled. Please enable it to continue.
+ </strong>
+ </noscript>
+ <div id="app"></div>
+ <div id="portal"></div>
+ <script type="module" src="./src/index.tsx"></script>
+</body>
+
+</html>
\ No newline at end of file |