Same filename and directory in other branches
  1. 8.x-3.x templates/views-slideshow-pager-field-field.html.twig 1 comment
  2. 8.x-4.x templates/views-slideshow-pager-field-field.html.twig 1 comment

Default theme implementation for a views slideshow pager field field data.

Available variables:

  • css_identifier: css identified for the field..
  • label: Label for the field.
  • output: The field data.

See also

template_preprocess_views_slideshow_pager_field_field()

2 theme calls to views-slideshow-pager-field-field.html.twig
template_preprocess_views_slideshow_pager_fields in ./views_slideshow.theme.inc
Theme pager fields.
_views_slideshow_cycle_preprocess_views_slideshow_pager_fields in modules/views_slideshow_cycle/views_slideshow_cycle.theme.inc
Implements hook_preprocess_views_slideshow_pager_fields().

File

templates/views-slideshow-pager-field-field.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a views slideshow pager field field data.
  5. *
  6. * Available variables:
  7. * - css_identifier: css identified for the field..
  8. * - label: Label for the field.
  9. * - output: The field data.
  10. *
  11. * @see template_preprocess_views_slideshow_pager_field_field()
  12. *
  13. * @ingroup vss_templates
  14. */
  15. #}
  16. <div class="views-field-{{ css_identifier }}">
  17. {% if label %}
  18. <label class="view-label-{{ css_identifier }}">
  19. {{ label }}:
  20. </label>
  21. {% endif %}
  22. <div class="views-content-{{ css_identifier }}">
  23. {{ output }}
  24. </div>
  25. </div>

Related topics