{% extends "base.html" %} {% load image_tags %} {% block title %} Games - Grid View {% endblock title %} {% block extra_head %} {% endblock extra_head %} {% block content %}

All Games

Twitch > Games
[list] [rss] [atom] [discord] [explain] [csv] [json]
{% if games_by_org %}
{% for organization, games in games_by_org.items %} {% for item in games %}
{% if item.game.box_art_best_url %} {% picture item.game.box_art_best_url alt="Box art for "|add:item.game.display_name width=180 height=240 style="border-radius: 8px" %} {% else %}
🎮
No Image
{% endif %}

{{ item.game.display_name }}

{% endfor %} {% endfor %}
{% else %}
🎮

No Games Found

No games are currently available.

{% endif %}
{% endblock content %}