photomix/app/views/collections/index.html.erb

9 lines
243 B
Plaintext
Raw Normal View History

2009-06-11 13:05:09 +02:00
<h2>Collections</h2>
<div id="multipleimages">
2009-06-03 01:33:39 +02:00
<% for collection in @collections %>
2009-06-11 13:05:09 +02:00
<div class="thumb">
<h3><%= link_to collection.title, collection %></h3>
<%= render :partial => collection.albums.find(:first) %>
</div>
<% end %>
</div>