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

{{ listing['title'] }}

{%- if 'subtitle' in listing %}

{{ macros.render_element(listing['subtitle']) }}

{% endif -%}
{#- iterate over items -#} {% for item in listing['items'] %}
{#- title and platform, activity, state as a level item (all on one line) -#} {#- keywords as tags, no note currently -#}
{{ macros.render_element(item['keyword']) }}
{#- important fields in a certain order -#}
{%- for field in ('homepage', 'media', 'inspiration', 'download', 'play online', 'developer') -%} {%- if field in item -%}{{ macros.render_element(item[field]) }}
{%- endif -%} {%- endfor -%}
{#- technical fields -#}
Technical information
{%- for field in ('code language', 'code license', 'code repository', 'code dependency', 'assets license', 'build system') -%} {%- if field in item -%}{{ macros.render_element(item[field]) }}
{%- endif -%} {%- endfor -%}
{#- improve, raw -#}
{#- of box -#} {% endfor %}

Back to top

{% endblock %}