% provide(:title, "#{@search}") -%>
| Artist | Name | Description | <% @creations.each_with_index do |creation, index| %> <% cache creation do %>|
|---|---|---|---|
| <%= 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 %> |
No creations found.
<% end %>| Name | Description | <% @tutorials.each_with_index do |tutorial, index| %> <% cache tutorial do %>
|---|---|
| <%= link_to tutorial.heading, tutorial_path(tutorial) %> | <%= tutorial.description %> |
No tutorials found.
<% end %>| Artists | Name | <% @members.each_with_index do |artist, index| %>||||
|---|---|---|---|---|---|
| <%= 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 %> |
No artists found.
<% end %>