Skip to content

Instantly share code, notes, and snippets.

@attatae
Last active August 29, 2015 13:58
Show Gist options
  • Save attatae/10141653 to your computer and use it in GitHub Desktop.
Save attatae/10141653 to your computer and use it in GitHub Desktop.
<div class="profile-present">
<div id="profile-profile_name">
<h1>
<p>
<%= @profile.profile_name %></span>
</p>
</h1>
</div><hr/>
<strong>About</strong>
<p>
<%= @profile.about %>
</p>
<strong>Interests</strong>
<p>
<%= raw @profile.interest_list.map { |t| link_to t, interest_path(t) }.join(', ') %>
</p>
<strong>Skills</strong>
<p>
<%= raw @profile.skill_list.map { |t| link_to t, skill_path(t) }.join(', ') %>
</p>
<%= link_to 'Edit profile', edit_profile_path(@profile) %> |
<%= link_to 'Back to profiles', profiles_path %>
<hr />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment