{% load color_to_rgb %} {% load static %}
{% if title %}

{{ title }}

{% if title == "Most Popular Among Folks" %} All Popular Titles → {% elif title == "Highly Rated Stuff" %} All Top Rated Titles → {% elif title == "The Trending Section" %} All Trending Titles → {% endif %}
{% endif %}
{% for anime in anime_list %}
{{ anime.title.english }}

{{ anime.title.english|default:anime.title.romaji }}

{{ anime.status }} {% if anime.totalEpisodes %} {{ anime.totalEpisodes }} eps {% endif %}
{% if anime.cover %} Cover {% else %}
{% endif %}

{{ anime.title.english|default:anime.title.romaji }}

{{ anime.title.english }}
{{ anime.type }} {{ anime.status }} {% if anime.totalEpisodes %} {{ anime.totalEpisodes }} Episodes {% endif %} {% if anime.rating %} ★ {{ anime.rating }}% {% endif %}
{{ anime.description|truncatewords:50 }}
{% for genre in anime.genres %} {{ genre }} {% endfor %}
{% endfor %}
{% block scripts %} {% endblock scripts %}