blob: e0a77f1f85560c578ea10d8d54dc7158586afddb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<script>
import Spacer from '$lib/Layout/Spacer.svelte';
import root from '$lib/Utility/root';
</script>
<ul>
<li>
<a href="https://anilist.co/" target="_blank">AniList</a>: Most data not explicity attributed
otherwise, excluding primary chapter and volume data, character birthday data, and subtitled
anime release data
</li>
<li><span id="mangadex">MangaDex</span>: <b>Only</b> non-native chapter and volume count data</li>
<li>
<a href="https://seiga.nicovideo.jp/manga/" target="_blank">ニコニコ漫画</a>: Native chapter and
volume count data
</li>
<li><a href="https://x.com/YDPFALION" target="_blank">YDPFa</a>: Girls Band Cry Icon Set</li>
<!-- <li>
<a href="https://www.animecharactersdatabase.com/index.php" target="_blank">
Anime Characters Database
</a>: primary character birthday data
</li> -->
<!-- <li>
<a href="https://www.anisearch.com/" target="_blank">aniSearch</a>: secondary character
birthday data
</li> -->
<!-- <li>
<a href="https://www.mangaupdates.com/" target="">Baka-Updates Magna</a>: manga release data
</li> -->
<!-- <li>
<a href="https://www.wlnupdates.com/">WLN Updates</a>: web & light novel release data
</li> -->
<!-- <li>
<a href="https://subsplease.org/">SubsPlease</a>: subtitle release data
</li> -->
</ul>
<Spacer />
<details open class="card-clear">
<summary>Outbound Link Disclaimer</summary>
<ol>
<li>
<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={root('/')}>due.moe</a>
is not affiliated with any of the above or below sites and services.
</li>
<li>
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>
<li><a href="https://myanimelist.net/">MyAnimeList</a> (if selected)</li>
<li><a href="https://animeschedule.net/">AnimeSchedule.net</a> (if selected)</li>
<li><a href="https://www.livechart.me/">LiveChart.me</a> (if selected)</li>
</ul>
</li>
</ol>
</details>
<style>
#mangadex {
filter: blur(2.5px);
transition: filter 0.25s;
}
#mangadex:hover {
filter: none;
}
</style>
|