You are here

views-infinite-scroll-pager.html.twig in Views Infinite Scroll 8

The views infinite scroll pager template.

File

templates/views-infinite-scroll-pager.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * The views infinite scroll pager template.
  5. */
  6. #}
  7. {% if items.next %}
  8. <ul{{ attributes }}>
  9. <li class="pager__item">
  10. <a class="button" href="{{ items.next.href }}" title="{{ 'Load more items'|t }}" rel="next">{{ options.button_text }}</a>
  11. </li>
  12. </ul>
  13. {% endif %}