% content_for :title do %>
My Albums
<% end %>
Albums
<% @albums.each do |album| %>
-
<%= link_to album_images_path(album), class: :album do %>
<% if album.images.any? %>
<%= image_tag(album.images.first.image.thumb('200x200#').url) %>
<% else %>
<%= image_tag(asset_path("album.svg")) %>
<% end %>
<%= album.title %>
<% end %>
<% end %>
Create New Album
<%= simple_form_for @albums.new do |f| %>
<%= f.input :user_id, as: :hidden %>
<%= f.input :title %>
<%= f.submit %>
<% end %>