{% extends "base.jinja" %} {% block content %}

{{ data['title'] }}

{% for g in data['games'] %}
{%- set comma = joiner(", ") -%} Home: {% for url in g['Home'] %}{{ comma() }}{{ url }}{% endfor %}
{% if 'Inspirations' in g %} {%- set comma = joiner(", ") -%} Inspirations: {% for inspiration in g['Inspirations']%}{{ comma() }}{{ inspiration[1] }}{% endfor %}
{% endif%} {%- set comma = joiner(", ") -%} {% if 'Media' in g %}Media: {% for url in g['Media'] %}{{ comma() }}{{ url }}{% endfor %}
{% endif%} {%- set comma = joiner(", ") -%} {% if 'Download' in g %}Download: {% for url in g['Download'] %}{{ comma() }}{{ url }}{% endfor %}
{% endif%} {%- set comma = joiner(", ") -%} {% if 'Play' in g %}Play: {% for url in g['Play'] %}{{ comma() }}{{ url }}{% endfor %}
{% endif%} {% if 'Developer' in g %} {%- set comma = joiner(", ") -%} Developer: {% for developer in g['Developer']%}{{ comma() }}{{ developer[1] }}{% endfor %}
{% endif%} {% if 'Note' in g %}{{ g['Note'] }}
{% endif%} Technical info
{%- set comma = joiner(", ") -%} Language: {% for language in g['Code language'] %}{{ comma() }}{{ language }}{% endfor %}
{%- set comma = joiner(", ") -%} License: {% for license in g['Code license'] %}{{ comma() }}{{ license }}{% endfor %}
{% if 'Build system' in g['Building'] %}Build system:
{% endif%}
{% endfor %}
{% endblock %}