{% extends "shared/base.html" %} {% block title %}AniCove - Watch Anime Online{% endblock %} {% block meta_description %}Watch the latest anime online for free in HD. Discover trending, popular, and new anime series.{% endblock %} {% block og_title %}{{ self.title() }}{% endblock %} {% block og_description %}{{ self.meta_description() }}{% endblock %} {% block og_image %}{% if suggestions and suggestions.data and suggestions.data.spotlightAnimes %}{{ suggestions.data.spotlightAnimes[0].banner or suggestions.data.spotlightAnimes[0].poster }}{% endif %}{% endblock %} {% block content %}
{% for _ in range(8) %}
{% endfor %}
{% if error %}
{{ error }}
{% endif %} {% if suggestions and suggestions.data and suggestions.data.spotlightAnimes %}
1 / {{ suggestions.data.spotlightAnimes[:20]|length }}
{% endif %}
{% if suggestions and suggestions.data and suggestions.data.trendingAnimes %}

Trending Now

Hot
View all
{% endif %} {% if suggestions and suggestions.data and suggestions.data.mostPopularAnimes %}

Popular This Season

View all
{% endif %} {% if suggestions and suggestions.data and suggestions.data.latestEpisodeAnimes %}

Recent Updates

New
View all
{% endif %} {% if movies %}

Popular Movies

View all
{% endif %} {% if weekly_schedule %}

Upcoming Releases

Anticipated
{% set seen = [] %} {% for day_bucket in weekly_schedule %} {% for anime in day_bucket.animes %} {% if anime.name not in seen %} {% set _ = seen.append(anime.name) %}
{{ anime.name or anime.title }} {% if anime.isAdult %}18+{% endif %}
{{ anime.name or anime.title }}
{% if anime.type %}{{ anime.type }}{% endif %} {% if anime.next_episode %} · Ep {{ anime.next_episode }} {% endif %}
{% endif %} {% endfor %} {% endfor %}
{% endif %}
{% if suggestions and suggestions.data and suggestions.data.trendingAnimes %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}