_header.html.erb 765 B

12345678910111213141516171819202122232425262728293031323334
  1. <header>
  2. <div id='logo'>
  3. inigoValentin
  4. </div>
  5. <nav>
  6. <%=
  7. link_to(
  8. image_tag(
  9. "icon/home.svg",
  10. alt: ""
  11. ) + t('header.home'),
  12. main_path()
  13. )
  14. %>
  15. <%=
  16. link_to(
  17. image_tag(
  18. "icon/profile.svg",
  19. alt: ""
  20. ) + t('header.profile'),
  21. profile_path()
  22. )
  23. %>
  24. <%=
  25. link_to(
  26. image_tag(
  27. "icon/project.svg",
  28. alt: ""
  29. ) + t('header.projects'),
  30. project_index_url()
  31. )
  32. %>
  33. </nav>
  34. </header>