<%=h @category.name %>

<% if @category.items.size < 1 %>

Unfortunately, there are currently no items in this category.

<% else %>

Click an item for additional information and more pictures.

<% cache('name', :expires_in => 60) do %> <% for item in @category.items %>
<%= link_to item.name, :action => 'show', :id => item %>
<% if item.images.size > 0 %>
<% end %>
<%=h item.description %>
<% end %> <% end %>
<% end %>