views-more.html.twig

Default theme implementation for a views "more" link.

Available variables:

  • view: The view object.
  • more_url: The URL for the views "more" link.
  • link_text: The text for the views "more" link.

See also

template_preprocess()

File

drupal/core/modules/views/templates/views-more.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a views "more" link.
  5. *
  6. * Available variables:
  7. * - view: The view object.
  8. * - more_url: The URL for the views "more" link.
  9. * - link_text: The text for the views "more" link.
  10. *
  11. * @see template_preprocess()
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. <div class="more-link">
  17. <a href="{{ more_url }}">
  18. {{ link_text }}
  19. </a>
  20. </div>

Related topics