Sha256: 9b7134447ce7bb66e867f573bf0fc38e039b57d98dcd742b334231407a40e91a

Contents?: true

Size: 880 Bytes

Versions: 37

Compression:

Stored size: 880 Bytes

Contents

<% if object.image_collection && object.slide_interval && object.image_collection.images.any? %>
  <% interval = object.autoplay? ? object.slide_interval * 1000 : false %>
  <div id="carousel-<%= column.id %>" class="carousel slide" data-ride="carousel" data-interval="<%= interval %>">
    <ol class="carousel-indicators justify-content-end">
      <% object.image_collection.images.each_with_index do |_img,i| %>
        <li data-target="#carousel-<%= column.id %>" data-slide-to="<%= i %>" class="<%= 'active' if i == 0 %>"></li>
      <% end %>
    </ol>
    <div class="carousel-inner" role="listbox">
      <% object.image_collection.images.each_with_index do |img,i| %>
        <div class="carousel-item <%= 'active' if i == 0 %>">
          <%= image_tag img.asset.image.url(800, 800, quality: 65), alt: '' %>
        </div>
      <% end %>
    </div>
  </div>
<% end %>

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
udongo-7.9.0 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.8.1 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.8.0 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.7.2 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.7.1 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.7.0 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.6.2 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.6.1 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.6.0 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.5.1 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.5.0 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.4.2 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.4.1 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.4.0 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.3.5 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.3.4 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.3.3 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.3.2 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.3.1 app/views/frontend/flexible_content/_slideshow.html.erb
udongo-7.2.1 app/views/frontend/flexible_content/_slideshow.html.erb