You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
624 B
Twig

{% extends "base.html.twig" %}
{% import "macros.html.twig" as macros %}
{% block title %}{{ parent() }} — games{% endblock %}
{% block body %}
<h2>games</h2>
{% for game in games %}
<a href="/game/{{ game.slug }}" class="game-listing">
{% if game.meta.icon %}
<img src="{{ game.meta.icon }}">
{% elseif game.meta.steam %}
<img src="https://steamcdn-a.akamaihd.net/steam/apps/{{ game.meta.steam }}/capsule_184x69.jpg">
{% endif %}
<h3 class="game-title">{{ game.meta.title }}</h3>
</a>
{% endfor %}
{% endblock %}