| <%= link_to( image_tag( "social/email.svg", class: "footer_social_icon", alt: t("social.mail") ), "javascript:showContactForm();", title: + t("index.email") ) %> <% @user.user_social_links.each do |link| %> <%= link_to( image_tag( link.social_link.logo, class: "footer_social_icon", alt: link.social_link.i18n_link_title ), link.generate_link, target: "_blank", title: link.social_link.i18n_link_title ) %> <% end %> | <%= t("footer.copy", name: @user.full_name, year: Date.today.year) %> |
<%= link_to(
t("footer.help"),
help_path,
id: "footer_help",
title: t("footer.help")
) %>
<% path = request.fullpath if path.to_s[0..4] =~ /[a-z]{2}/ then path = path[3..] + "/" end %> <% I18n.available_locales.each do |locale| %> <%= link_to( image_tag( "lang/#{locale.to_s}.svg", alt: t("footer.lang_#{locale.to_s}") ), request.protocol + request.host_with_port + "/" + locale.to_s + path, class: "lang", title: t("footer.lang_#{locale.to_s}") ) %> <% end %> |