..
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 | {% extends 'blog/partials/base.html' %} {% block content %} {% load static %}
<div class="iframe-loader" style="margin-top: 36px">
<iframe
src="{% url 'blog:anidata' %}"
width="100%"
height="100%"
frameborder="0"
id="anilist"
></iframe>
</div>
<hr />
<ul>
<li>
Data is fetched from
<a href="https://myanimelist.net/animelist/crvs" target="_blank"
>MyAnimeList</a
>.
</li>
<li>
I <i>do not</i> update the list regularly. Some anime might be missing.
</li>
</ul>
{% endblock content %} {% block scripts %}
<script type="text/javascript">
$("#anilist").css("height", $(window).height() + "px");
</script>
{% endblock scripts %}
|
|