You are here

views-slideshow-cycle.html.twig in Views Slideshow 8.3

<div class="skin-{{ skin }}">
  {% if top_widget_rendered %}
    <div class="views-slideshow-controls-top clearfix">
      {{ top_widget_rendered }}
    </div>
  {% endif %}

  {{ slideshow }}

  {% if bottom_widget_rendered %}
    <div class="views-slideshow-controls-bottom clearfix">
      {{ bottom_widget_rendered }}
    </div>
  {% endif %}
</div>

File

modules/views_slideshow_cycle/templates/views-slideshow-cycle.html.twig
View source
  1. <div class="skin-{{ skin }}">
  2. {% if top_widget_rendered %}
  3. <div class="views-slideshow-controls-top clearfix">
  4. {{ top_widget_rendered }}
  5. </div>
  6. {% endif %}
  7. {{ slideshow }}
  8. {% if bottom_widget_rendered %}
  9. <div class="views-slideshow-controls-bottom clearfix">
  10. {{ bottom_widget_rendered }}
  11. </div>
  12. {% endif %}
  13. </div>