<% content_for :head do %> <%= stylesheet_link_tag "profile", media: "all", "data-turbolinks-track": "reload" %> <% end %>

<%= @user.full_name %>

<%=image_tag(@user.picture[0], id: "profile_image", alt: "")%> <%= @user.i18n_tagline %>
<% @user.user_social_links.each do |link| %> <%= link_to( image_tag(link.social_link.logo, class: "project_image", alt: link.social_link.i18n_link_title, title: link.social_link.i18n_link_title), link.generate_link, target: "_blank", title: link.social_link.i18n_link_title ) %> <% end %>

<%= t("profile.description") %>

<%= @user.i18n_bio %>

<%= link_to( t("profile.resume"), @resume_main.file, target: "_blank", title: t("profile.resume"), class: "a_button" ) %> <% if @resume_languages.size > 0 %>
<%= t("profile.resume_lang") %>
    <% @resume_languages.each do |resume| %>
  • <%= link_to( t("profile.resume_" + resume.language), resume.file, target: "_blank", title: t("profile.resume_" + resume.language) ) %>
  • <% end%>
<% end%>