{% extends "base.html" %} {% block background %} {% if game.background %} {{ url_for('static', filename='images/backgrounds/' + game.background) }} {% else %} {{ url_for('static', filename='images/default.jpg') }} {% endif %} {% endblock %} {% block content %}
{% if game.logo %} {{ game.name }} Logo {% else %}

{{ game.name }}

{% endif %}

By {{ game.studio }}

{% for person in game.authors %} {{ person.name }} {% if not loop.last %}, {% endif %} {% endfor %}

Description

{{ game.description }}

{% for image in game.images %} {{ image.alt }} {% endfor %}
{% endblock %}