Skip to content

Instantly share code, notes, and snippets.

@rbnpercy
Created July 7, 2018 01:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbnpercy/b50f113fed52ff5f847150afca081fe2 to your computer and use it in GitHub Desktop.
Save rbnpercy/b50f113fed52ff5f847150afca081fe2 to your computer and use it in GitHub Desktop.
<h2><%= @album.name %></h2>
<ul>
<%= for photo <- @album.photos do %>
<li>
<img src=<%= "https://s3.amazonaws.com/#{photo.album_id}/" <> photo.image %> />
</li>
<% end %>
</ul>
<span><%= link "Edit", to: album_path(@conn, :edit, @album) %></span>
<span><%= link "Back", to: album_path(@conn, :index) %></span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment