<% provide(:title, "#{@search}") -%>
<% if @creations.any? %> <% @creations.each_with_index do |creation, index| %> <% cache creation do %> <% end %> <% end %>
Artist Name Description
<%= link_to cake_path(creation) do %> <%= image_tag creation.primary_image.url_for(:thumb), class: 'thumbnail', style: "width:65px;" %> <% end %> <%= link_to creation.user.name, profile_path(creation.user) %> <%= creation.name %> <%= creation.story %>
<% else %>

No creations found.

<% end %>
<% if @tutorials.any? %> <% @tutorials.each_with_index do |tutorial, index| %> <% cache tutorial do %> <% end %> <% end %>
Name Description
<%= link_to tutorial.heading, tutorial_path(tutorial) %> <%= tutorial.description %>
<% else %>

No tutorials found.

<% end %>
<% if @members.any? %> <% @members.each_with_index do |artist, index| %> <% end %>
Artists Name
<%= link_to profile_path(artist) do %> <%= avatar_for(artist, size: 65) %> <% end %> <%= link_to artist.name, profile_path(artist) %> <%= link_to artist.website, artist.website if artist.website %> <%= link_to artist.twitter, "https://twitter.com/#{artist.twitter}" if artist.twitter.present? %> <%= link_to artist.facebook, artist.facebook if artist.facebook %> <%= artist.city %>
<% else %>

No artists found.

<% end %>