index.html.erb 340 B

12345678910111213
  1. <% content_for :head do %>
  2. <%= stylesheet_link_tag 'profile', media: 'all', 'data-turbolinks-track': 'reload' %>
  3. <% end %>
  4. <section id='info'>
  5. <h3>
  6. <%= @user.full_name %>
  7. </h3>
  8. <article>
  9. <%=image_tag(@user.picture[0], id: "profile_image")%>
  10. <div id='social'>
  11. </div>
  12. </article>
  13. </section>