32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
<%= stylesheet_link_tag "gallery" %>
|
|
<%= stylesheet_link_tag "lib/tags-groups" %>
|
|
<% content_for :page_specific_javascript do %>
|
|
<%= javascript_include_tag "lib/jquery-ui-1.10.0.custom.min" %>
|
|
<%= javascript_include_tag "jquery.masonry.min.js" %>
|
|
<%= javascript_include_tag "jquery.lite.image.resize.js" %>
|
|
<%= javascript_include_tag "gallery" %>
|
|
<% end %>
|
|
<%= render_filter @filter_fields, "orbit_gallery" %>
|
|
<div class="order-edit-notification">Albums re-ordering enabled.</div>
|
|
<%= render 'recreate_thumb' %>
|
|
<div class="rgbody" style='float: left;'>
|
|
<ul id="orbit_gallery" class="gallery clearfix" data-gallery-id="gallery"
|
|
style='display: inline-flex;flex-wrap: wrap;'>
|
|
<%= render :partial => "album", :collection => @albums %>
|
|
</ul>
|
|
</div>
|
|
<div class="bottomnav clearfix">
|
|
<div class="action pull-right">
|
|
<% if can_edit_or_delete?(nil) %>
|
|
<a href="#" class="btn btn-small btn-info order-btn-class" id="edit-order-btn"><%= t('gallery.edit_order') %></a>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|