{% for item in plugin.items %}
  • {{ item.name }} {% if item.get('items') %}
      {% for subitem in item.get('items') %}
    • {{ subitem.name }}
    • {% endfor %}
    {% endif %}
  • {% endfor %}