cirandas.net

ref: master

app/views/blocks/slideshow.html.erb


<%
  if block.gallery
    images = block.block_images
    if block.shuffle
      images = images.shuffle
    end
  end
%>

<%= block_title(block.title, block.subtitle) %>

<% if images %>
  <% description = images.any? { |img| !img.abstract.blank? } %>
  
'> <% if block.navigation %>
<%= link_to _('Previous'), '#', :class => 'icon-media-prev' %> <% if block.interval > 0 %> <%= link_to ' ', '#', :class => 'icon-media-pause', :onclick => "togglePlayback('#block-#{block.id} .slideshow-container', this); return false;" %> <% end %> <%= link_to _('Next'), '#', :class => 'icon-media-next' %>
<% end %>
<% else %> <%= _('Please, edit this block and select an image gallery.') %> <% end %>