8 lines
199 B
Plaintext
8 lines
199 B
Plaintext
<h2><%= h @collection.title %></h2>
|
|
<p><%= h @collection.description %></p>
|
|
|
|
<% for album in @collection.albums %>
|
|
<h3><%= album.title %></h3>
|
|
<p><%= render :partial => album.photos %></p>
|
|
|
|
<% end %> |