{% set size = 'full' %}
{% if options.size %}
{% set size = options.size %}
{% endif %}
{% block items %}
{% for file in item._items %}
{% if ((loop.index0 < options.limit) or (not options.limit)) %}
{# Make the first image initially current #}
{% if (item.showDescriptions and file.description and (not options.userOptions.disableDescriptions)) or file.hyperlink or (item.showTitles and file.title and (not options.userOptions.disableTitles)) %}
{% if item.showTitles and file.title and (not options.userOptions.disableTitles) %}
{{ file.title | e }}
{% endif %}
{% if item.showDescriptions and file.description and (not options.userOptions.disableDescriptions) %}
{# Don't render HTML tags, do respect line breaks #}
{{ file.description | e | nlbr }}