{% extends theme('layout.html') %} {% from "_helpers.html" import link_to %} {% set title = 'Themes' %} {% block body %}

Theme Selection

{% for theme in themes %}

{{ theme.name }}

By {{ theme.author }}{% if theme.license %}, license: {{ theme.license }}{% endif %}

{{ theme.description }}

{{ link_to('Select this theme', 'settheme', ident=theme.identifier) }}

{% endfor %} {% endblock body %}