wingsuit-designsystem / wingsuit

Twig for Storybook
GNU General Public License v2.0
90 stars 16 forks source link

Change pagination items loop #190

Open Duwid opened 2 years ago

Duwid commented 2 years ago

Is your feature request related to a problem? Please describe. Pagination is not working with Drupal's pager items schema.

Describe the solution you'd like

    {% for item in items %}
      <li class="font-sans px-4 py-4 lg:p-2 lg:px-4 text-black">
        <a class="text-md {% if (item.in_active_trail) %}is-active{% endif %}"
           href="{{ item.link }}">{{ item.title }}</a>
      </li>
    {% endfor %}

should be:

    {% for title, item in items %}
      <li class="font-sans px-4 py-4 lg:p-2 lg:px-4 text-black">
        <a class="text-md {% if (item.in_active_trail) %}is-active{% endif %}"
           href="{{ item.href }}">{{ title }}</a>
      </li>
    {% endfor %}