13 lines
No EOL
420 B
Text
13 lines
No EOL
420 B
Text
<h2>Collections</h2>
|
|
<div id="multipleimages">
|
|
<% for collection in @collections %>
|
|
<div class="thumb">
|
|
<h3><%= link_to collection.title, collection %></h3>
|
|
<%= link_to (image_tag collection.albums.find(:first).photos.first.path_modified_public('collection') ), collection_path(collection) %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% if has_role?("admin") %>
|
|
<br /><%= link_to "New collection", new_collection_path %>
|
|
<% end %> |