mirror of
https://github.com/danbee/my-images
synced 2025-03-04 08:49:05 +00:00
18 lines
438 B
Plaintext
18 lines
438 B
Plaintext
<% content_for :title do %>
|
|
<h1><%= link_to "My Albums", albums_path %></h1>
|
|
<% if @image.album.present? %>
|
|
→
|
|
<%= 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>
|