forked from hamcha/tghandbook
Fix build issues
This commit is contained in:
parent
8b3fedf555
commit
a8cce4cd05
1 changed files with 24 additions and 24 deletions
48
index.html
48
index.html
|
@ -14,31 +14,31 @@
|
|||
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
href="assets/images/icons-manifest/icon152.png"
|
||||
href="./assets/images/icons-manifest/icon152.png"
|
||||
/>
|
||||
<link rel="manifest" href="manifest.webmanifest" />
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon" />
|
||||
<link rel="manifest" href="./manifest.webmanifest" />
|
||||
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
sizes="32x32"
|
||||
href="assets/images/icons-manifest/icon32.png"
|
||||
href="./assets/images/icons-manifest/icon32.png"
|
||||
/>
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
sizes="16x16"
|
||||
href="assets/images/icons-manifest/icon16.png"
|
||||
href="./assets/images/icons-manifest/icon16.png"
|
||||
/>
|
||||
<link
|
||||
rel="preload"
|
||||
href="assets/fonts/iosevka/iosevka-aile.css"
|
||||
href="./assets/fonts/iosevka/iosevka-aile.css"
|
||||
as="style"
|
||||
/>
|
||||
<link rel="preload" href="style/main.scss" as="style" />
|
||||
<link rel="preload" href="src/index.ts" as="script" />
|
||||
<link rel="stylesheet" href="assets/fonts/iosevka/iosevka-aile.css" />
|
||||
<link rel="stylesheet" href="style/main.scss" />
|
||||
<link rel="preload" href="./style/main.scss" as="style" />
|
||||
<link rel="preload" href="./src/index.ts" as="script" />
|
||||
<link rel="stylesheet" href="./assets/fonts/iosevka/iosevka-aile.css" />
|
||||
<link rel="stylesheet" href="./style/main.scss" />
|
||||
<title>/tg/station Handbook</title>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -52,8 +52,8 @@
|
|||
<div class="page special center" id="Welcome" data-tab="$Welcome">
|
||||
<div class="wrapper">
|
||||
<header>
|
||||
<img class="icon" src="assets/images/outline.svg" />
|
||||
<img class="type" src="assets/images/type.svg" />
|
||||
<img class="icon" src="./assets/images/outline.svg" />
|
||||
<img class="type" src="./assets/images/type.svg" />
|
||||
</header>
|
||||
<div class="maxw">
|
||||
<p>
|
||||
|
@ -79,9 +79,7 @@
|
|||
<div class="action_buttons"></div>
|
||||
</div>
|
||||
<div class="features hidden" data-name="Extra features">
|
||||
<h2>
|
||||
Extra Features
|
||||
</h2>
|
||||
<h2>Extra Features</h2>
|
||||
<div class="maxw">
|
||||
<h3 class="nobg">Jump to section/item</h3>
|
||||
<p>
|
||||
|
@ -94,12 +92,12 @@
|
|||
</p>
|
||||
<div class="images">
|
||||
<img
|
||||
src="assets/images/welcome/bs-local.png"
|
||||
style="width: 40%;"
|
||||
src="./assets/images/welcome/bs-local.png"
|
||||
style="width: 40%"
|
||||
/>
|
||||
<img
|
||||
src="assets/images/welcome/bs-global.png"
|
||||
style="width: 40%;"
|
||||
src="./assets/images/welcome/bs-global.png"
|
||||
style="width: 40%"
|
||||
/>
|
||||
</div>
|
||||
<p>
|
||||
|
@ -122,9 +120,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="credits hidden" data-name="Other infos">
|
||||
<h2>
|
||||
Other Informations
|
||||
</h2>
|
||||
<h2>Other Informations</h2>
|
||||
<p>
|
||||
Thanks to /tg/station and every wiki contributor who did most of
|
||||
the work!
|
||||
|
@ -145,8 +141,12 @@
|
|||
</main>
|
||||
<noscript>
|
||||
<h1>JavaScript is required for this tool</h1>
|
||||
<h2>This tools runs completely in your browser, therefore it needs JavaScript to download all the pages, parse them and add all the spicy extras.</h2>
|
||||
<h2>
|
||||
This tools runs completely in your browser, therefore it needs
|
||||
JavaScript to download all the pages, parse them and add all the spicy
|
||||
extras.
|
||||
</h2>
|
||||
</noscript>
|
||||
<script src="src/index.ts" async type="module"></script>
|
||||
<script src="./src/index.ts" async type="module"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue