{% load i18n wagtailcore_tags wagtailimages_tags %}
  1. {{ self.title }}
  2. {% for item in self.items %}
  3. {% if item.page or item.url %} {% trans 'View' %} {% endif %} {% if item.image %}
    {% image item.image fill-1080x1080 %}
    {% endif %}

    {{ item.title }}

    {% if item.description %}

    {{ item.description }}

    {% endif %}
    {% for action in item.actions %} {% endfor %}
  4. {% endfor %}