32 lines
914 B
Plaintext
32 lines
914 B
Plaintext
<% content_for :page_specific_css do %>
|
|
<%= stylesheet_link_tag "gallery" %>
|
|
<% end %>
|
|
<% 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>
|
|
|
|
<div class="rgbody">
|
|
<ul id="orbit_gallery" class="gallery clearfix" data-gallery-id="gallery">
|
|
<%= 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">Edit Order</a>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|