You are here

views-view-mapping-test.html.twig in Drupal 8

Default theme implementation to display a view of mapping_test rows.

Available variables:

  • rows: A list of view rows.
  • options: Various view options, including the row style mapping.
  • view: The view object.
  • element: Render array of views rows.

File

core/modules/views/tests/modules/views_test_data/templates/views-view-mapping-test.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a view of mapping_test rows.
  5. *
  6. * Available variables:
  7. * - rows: A list of view rows.
  8. * - options: Various view options, including the row style mapping.
  9. * - view: The view object.
  10. * - element: Render array of views rows.
  11. *
  12. * @see template_preprocess_views_view_mapping_test()
  13. *
  14. * @ingroup themeable
  15. */
  16. #}
  17. {{ element }}

Related topics