mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
12 lines
370 B
Plaintext
12 lines
370 B
Plaintext
<% if @category %>
|
|
<div class="sg-5 category" style="background: <%= @category.base_colour %>">
|
|
<h3><%=h @category.name.downcase %></h3>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% @photos.each do |photo| %>
|
|
|
|
<div class="sg-5 photo" style="background: url('<%= photo.photo.url(:size5) %>')"><%= link_to ' ', photo.photo.url, :rel => 'photo', :class => 'fancy' %></div>
|
|
|
|
<% end %>
|