10 lines
289 B
Text
10 lines
289 B
Text
%li.album{:id => post.id, :class => ("mine" if mine?(post))}
|
|
|
|
%div.name
|
|
= link_to post.name, object_path(post)
|
|
%div.time
|
|
= link_to(how_long_ago(post), object_path(post))
|
|
%div.image_cycle
|
|
- for photo in post.photos
|
|
= image_tag photo.image.url(:thumb_large)
|
|
|