header.php 579 B

12345678910111213141516171819
  1. <header>
  2. <div id='logo'>
  3. inigoValentin
  4. </div>
  5. <nav>
  6. <a href='<?=$root?>'>
  7. <img src='<?=$path["img"]["layout"]?>icon/home.svg'/>
  8. <?=text($page, "SECTION_HOME")?>
  9. </a>
  10. <a href='<?=$root?>profile'/>
  11. <img src='<?=$path["img"]["layout"]?>icon/profile.svg'/>
  12. <?=text($page, "SECTION_ME")?>
  13. </a>
  14. <a href='<?=$root?>project/'>
  15. <img src='<?=$path["img"]["layout"]?>icon/project.svg'/>
  16. <?=text($page, "SECTION_PROJECTS")?>
  17. </a>
  18. </nav>
  19. </header>