1
0
mirror of https://github.com/danbee/my-images synced 2025-03-04 08:49:05 +00:00
my-images/app/views/images/show.html.erb

18 lines
438 B
Plaintext

<% content_for :title do %>
<h1><%= link_to "My Albums", albums_path %></h1>
<% if @image.album.present? %>
&rarr;
<%= link_to @image.album.title, album_images_path(@image.album) %>
<% end %>
<% end %>
<h2><%= @image.image.name %></h2>
<div class="show-image" data-image-id="<%= @image.id %>">
<div class="image-container">
<%= render "image", image: @image %>
</div>
<%= render "info", image: @image %>
</div>