{% extends "partials/base.html" %} {% load custom_filters %} {% block css %} {% endblock css %} {% block content %}
{% for anime in trending_anime %} {% if anime.duration %}
{{ anime.type }} {{ anime.totalEpisodes }} {{ anime.rating }} {{ anime.duration }} mins

{% if user.preferences.title_language == "english" and anime.title.english %} {{ anime.title.english }} {% elif user.preferences.title_language == "native" and anime.title.native %} {{ anime.title.native }} {% else %} {{ anime.title.romaji }} {% endif %}

{{ anime.description|strip_html }}

{% endif %} {% endfor %}
Action Adventure Cars Comedy Drama Fantasy Horror Mahou Shoujo Mecha Music Mystery Psychological Romance Sci-Fi Slice of Life Sports Supernatural Thriller
{% if request.user.preferences.show_history_on_home and user_history_data %}

Continue Watching

View All →
{% for history in user_history_data %}

{% if user.preferences.title_language == "english" and history.anime_title_english %} {{ history.anime_title_english }} {% elif user.preferences.title_language == "native" and history.anime_title_native %} {{ history.anime_title_native }} {% else %} {{ history.anime_title_romaji }} {% endif %}

{{ history.episode_title }}

Episode {{ history.episode }}

{% endfor %}
{% endif %}

Trending Anime

View All →

Trending Manga

View All →

Popular Anime

View All →

Popular Manga

View All →

Top Rated Anime

View All →
{% if user.preferences.card_layout == 'classic' %} {% include "partials/datacard_render.html" with data=top_anime %} {% elif user.preferences.card_layout == 'wide' %} {% include "partials/datacardwide_render.html" with data=top_anime %} {% elif user.preferences.card_layout == 'compact' %} {% include "partials/datacardcompact_render.html" with data=top_anime %} {% endif %}

Top Rated Manga

View All →
{% if user.preferences.card_layout == 'classic' %} {% include "partials/mangacard_render.html" with data=top_manga %} {% elif user.preferences.card_layout == 'wide' %} {% include "partials/mangacardwide_render.html" with data=top_manga %} {% elif user.preferences.card_layout == 'compact' %} {% include "partials/mangacardcompact_render.html" with data=top_manga %} {% endif %}

Top Airing

{% include "partials/sidebarwidecard_render.html" with data=top_airing_anime %}

Upcoming {{ next_season }}

{% include "partials/sidebarwidecard_render.html" with data=upcoming_anime %}
{% endblock content %} {% block scripts %} {% endblock scripts %}