You are here

layout-paragraphs-builder-section-menu.html.twig in Layout Paragraphs 2.0.x

<div class="lpb-section-menu">
  <h4 class="visually-hidden">{{ 'Add Section'|t }}</h4>
  <div class="lpb-section-menu__group">
    {% for type in types %}
      <div class="lpb-section-menu__item type-{{type.id}} is-layout">
        <a class="lpb-section-menu-button" data-type="{{ type.id }}" href="#{{ type.id }}" title="{{ type.title }}">
        {% if type.image %}
        <img src="{{ type.image }}" alt ="" />
        {% endif %}
        <div>{{ type.title }}</div>
        </a>
      </div>
    {% endfor %}
  </div>
</div>

File

templates/layout-paragraphs-builder-section-menu.html.twig
View source
  1. <div class="lpb-section-menu">
  2. <h4 class="visually-hidden">{{ 'Add Section'|t }}</h4>
  3. <div class="lpb-section-menu__group">
  4. {% for type in types %}
  5. <div class="lpb-section-menu__item type-{{type.id}} is-layout">
  6. <a class="lpb-section-menu-button" data-type="{{ type.id }}" href="#{{ type.id }}" title="{{ type.title }}">
  7. {% if type.image %}
  8. <img src="{{ type.image }}" alt ="" />
  9. {% endif %}
  10. <div>{{ type.title }}</div>
  11. </a>
  12. </div>
  13. {% endfor %}
  14. </div>
  15. </div>