_header.html.erb 468 B

12345678910111213141516171819
  1. <header>
  2. <div id='logo'>
  3. inigoValentin
  4. </div>
  5. <nav>
  6. <%= link_to(
  7. image_tag("icon/home.svg") + t('header.home'),
  8. main_path()
  9. ) %>
  10. <%= link_to(
  11. image_tag("icon/profile.svg") + t('header.profile'),
  12. profile_path()
  13. ) %>
  14. <%= link_to(
  15. image_tag("icon/project.svg") + t('header.projects'),
  16. project_index_url()
  17. ) %>
  18. </nav>
  19. </header>