-
Notifications
You must be signed in to change notification settings - Fork 681
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix links * no jekyll
- Loading branch information
Showing
4 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
integrity="sha384-2HpI1Tt4Zv7emgrwKyetd6ouDie+RKolEtNHOdD+KCVHLj1V2fjxryG48h50f0Rw" | ||
crossorigin="anonymous" | ||
/> | ||
<link rel="stylesheet" href="/index.css"> | ||
<link rel="stylesheet" href="../index.css"> | ||
<script async type="module" | ||
src="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/cdn/shoelace-autoloader.js" | ||
integrity="sha384-ILzDiPYY4je5i95gGzpVe0e88rFqVnoz3i7HPBsRbtEHxfkA7wR8E+PwjCgt1Bin" | ||
|
@@ -78,7 +78,7 @@ <h1 class="sources__title">Extensions</h1> | |
<div class="source" :id="extension.pkg.replace('eu.kanade.tachiyomi.extension.', '')"> | ||
<a :href="`#${extension.pkg.replace('eu.kanade.tachiyomi.extension.', '')}`" | ||
class="source__anchor">#</a> <img class="source__icon" :alt="`Icon for ${extension.name}`" | ||
:src="`/icon/${extension.pkg}.png`" loading="lazy" width="42" height="42"> | ||
:src="`../icon/${extension.pkg}.png`" loading="lazy" width="42" height="42"> | ||
<div class="source__info"> | ||
<div class="source__name"> | ||
<span x-text="extension.name.split(': ')[1]"></span> <span class="source__version" | ||
|
@@ -90,7 +90,7 @@ <h1 class="sources__title">Extensions</h1> | |
<div class="source__version" x-text="simpleLanguageName(extension.lang)"></div> | ||
</div> | ||
<sl-button pill size="small" download class="download-button" | ||
:href="`/apk/${extension.apk}`"><sl-icon name="download"></sl-icon></sl-button> | ||
:href="`../apk/${extension.apk}`"><sl-icon name="download"></sl-icon></sl-button> | ||
</div> | ||
</template> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
integrity="sha384-2HpI1Tt4Zv7emgrwKyetd6ouDie+RKolEtNHOdD+KCVHLj1V2fjxryG48h50f0Rw" | ||
crossorigin="anonymous" | ||
/> | ||
<link rel="stylesheet" href="/index.css"> | ||
<link rel="stylesheet" href="index.css"> | ||
<script async type="module" | ||
src="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/cdn/shoelace-autoloader.js" | ||
integrity="sha384-ILzDiPYY4je5i95gGzpVe0e88rFqVnoz3i7HPBsRbtEHxfkA7wR8E+PwjCgt1Bin" | ||
|
@@ -70,7 +70,7 @@ <h2 class="header">Guide</h2> | |
</div> | ||
|
||
<div> | ||
<p>If you're not using any of the above, download and update extensions from <a class="description__anchor" href="/extensions">the listing page.</a></p> | ||
<p>If you're not using any of the above, download and update extensions from <a class="description__anchor" href="./extensions">the listing page.</a></p> | ||
</div> | ||
|
||
<script>Promise.allSettled([customElements.whenDefined("sl-button")]).then((() => { document.body.classList.add("ready") }))</script> | ||
|