diff options
Diffstat (limited to 'src/lib/Settings')
| -rw-r--r-- | src/lib/Settings/Attributions.svelte | 12 | ||||
| -rw-r--r-- | src/lib/Settings/Verbiage.svelte | 28 |
2 files changed, 24 insertions, 16 deletions
diff --git a/src/lib/Settings/Attributions.svelte b/src/lib/Settings/Attributions.svelte index 0a0d2d38..dad576e4 100644 --- a/src/lib/Settings/Attributions.svelte +++ b/src/lib/Settings/Attributions.svelte @@ -1,3 +1,7 @@ +<script> + import root from '$lib/Utility/root'; +</script> + <ul> <li> <a href="https://anilist.co/" target="_blank">AniList</a>: all data not explicity attributed @@ -31,17 +35,17 @@ <summary>Outbound Link Disclaimer</summary> <ol> <li> - <a href="/">due.moe</a> + <a href={root('/')}>due.moe</a> does not host or directly link to any less-than-legal anime or manga material and/or distribution platforms. </li> <li> - <a href="/">due.moe</a> + <a href={root('/')}>due.moe</a> is not affiliated with any of the above or below sites and services. </li> <li> - At the moment, <a href="/">due.moe</a> only ever contains outbound links to the following - sites and services: + At the moment, <a href={root('/')}>due.moe</a> only ever contains outbound links to the + following sites and services: <ul> <li><a href="https://anilist.co/">AniList.co</a></li> 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> |