You are here

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

Same filename and directory in other branches
  1. 8.4 templates/views-view-slideshow.html.twig
{% if slideshow %}
  <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>
{% endif %}

File

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