{% extends "layouts/app.twig" %} {% block content %}

Games

{{ games|length }} games from {{ games|reduce((carry, game) => carry + game.platform_count, 0) }} platforms
{% if games is empty %}

No games found

Start syncing your gaming libraries to see your games here.

{% else %}
{% for game in games %}
{% if game.image_url %} {{ game.title }} {% else %}
{% endif %}

{{ game.title }}

{{ game.platform_count }} platform{{ game.platform_count > 1 ? 's' : '' }} {% if game.platforms %} {{ game.platforms|join(', ') }} {% endif %}

{{ game.total_playtime|format_duration }} played {% if game.max_completion > 0 %} {{ game.max_completion }}% complete {% endif %}
{% if game.genres %}
{% for genre in game.genres %} {{ genre }} {% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}