{% extends "base.html" %} {% block title %}Games{% endblock %} {% block content %} {% if request.user.profile.favorite_games %}

Favorites

{% endif %} {% if todays_game and 'page' not in request.GET %}

Featured

{% include 'games/_game_card.html' with game=todays_game featured="true" %}
{% endif %}

Recently added

{% for game in object_list %} {% include 'games/_game_card.html' %} {% endfor %}
{% include "games/_pagination.html" %} {% endblock %}