diff options
author | crupest <crupest@outlook.com> | 2023-07-11 01:07:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 01:07:57 +0800 |
commit | a702dff4b62090a4e5453a8b9236824288df0c4f (patch) | |
tree | 0deae7f40692345c8e4b1473cdddbd13e0e5586d /FrontEnd/index.html | |
parent | 4cb87464fea217e1d0969747d6a17e88973982e7 (diff) | |
parent | d46b1aed549938c9f5e3e658b4098e71b5e2acf7 (diff) | |
download | timeline-a702dff4b62090a4e5453a8b9236824288df0c4f.tar.gz timeline-a702dff4b62090a4e5453a8b9236824288df0c4f.tar.bz2 timeline-a702dff4b62090a4e5453a8b9236824288df0c4f.zip |
Merge pull request #1381 from crupest/front-dev
Re-bootstrap front end.
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 |