{# Twig Loop Render Snippet Save as: styles/prosilver/template/your_template.html Note: Indent using real tabs. Save with UNIX LF endings. #}

{{ lang('VENDOR_EXTNAME_ITEMS_TITLE') }}

{% if loops.items_list|length %}
    {% for item in loops.items_list %}
  • {{ item.ITEM_NAME }}
    {{ item.ITEM_DESC }}
    {{ item.VIEWS }} {{ lang('VIEWS') }}
  • {% endfor %}
{% else %}

{{ lang('VENDOR_EXTNAME_NO_ITEMS') }}

{% endif %}