diff options
| author | Fuwn <[email protected]> | 2024-01-19 00:26:17 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-19 00:26:17 -0800 |
| commit | 20fafa287adec1382257622fc23bd6f58b09f3a2 (patch) | |
| tree | 863f09c3dc86e9a50ba4b0c4433d4ef7cd4ab3c1 /src/lib/Settings/Verbiage.svelte | |
| parent | fix(schedule): force list mode flag column count (diff) | |
| download | due.moe-20fafa287adec1382257622fc23bd6f58b09f3a2.tar.xz due.moe-20fafa287adec1382257622fc23bd6f58b09f3a2.zip | |
feat: root prefix all links
Diffstat (limited to 'src/lib/Settings/Verbiage.svelte')
| -rw-r--r-- | src/lib/Settings/Verbiage.svelte | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/src/lib/Settings/Verbiage.svelte b/src/lib/Settings/Verbiage.svelte index 580b7e61..c355a692 100644 --- a/src/lib/Settings/Verbiage.svelte +++ b/src/lib/Settings/Verbiage.svelte @@ -1,30 +1,34 @@ +<script> + import root from '$lib/Utility/root'; +</script> + <details open={false}> <summary>Verbiage</summary> <ul> <li> - <a href="/">Home</a>, Upcoming Episodes: Anime which you have seen all episodes of thus far, - and have a scheduled next episode(s) release date + <a href={root('/')}>Home</a>, Upcoming Episodes: Anime which you have seen all episodes of + thus far, and have a scheduled next episode(s) release date </li> <li> - <a href="/">Home</a>, Not Yet Released: Anime which have not yet aired their first episode, - and have a scheduled next episode(s) release date + <a href={root('/')}>Home</a>, Not Yet Released: Anime which have not yet aired their first + episode, and have a scheduled next episode(s) release date </li> <li> - <a href="/">Home</a>, Anime: Anime which you have not seen all episodes of thus far, and have - a scheduled next episode release date + <a href={root('/')}>Home</a>, Anime: Anime which you have not seen all episodes of thus far, + and have a scheduled next episode release date </li> <li> - <a href="/">Home</a>, Manga: Manga which you have not read all chapters of thus far, and have - an available next chapter(s) + <a href={root('/')}>Home</a>, Manga: Manga which you have not read all chapters of thus far, + and have an available next chapter(s) </li> <li> - <a href="/completed">Completed</a>, Anime: Anime which you have not seen all episodes of thus - far, and have concluded airing + <a href={root('/completed')}>Completed</a>, Anime: Anime which you have not seen all episodes + of thus far, and have concluded airing </li> <li> - <a href="/completed">Completed</a>, Manga: Manga which you have not read all chapters of thus - far, and have concluded publishing + <a href={root('/completed')}>Completed</a>, Manga: Manga which you have not read all chapters + of thus far, and have concluded publishing </li> </ul> </details> |