header.php 649 B

1234567891011121314151617181920212223
  1. <?php global $static?>
  2. <header>
  3. <img src='<?=$static["layout"]?>/logo/logo.png'/>
  4. <a href='<?=$base_url?>/'>
  5. <?=$page->string["section_home"]?>
  6. </a>
  7. <a href='<?=$base_url?>/fiestas/'>
  8. <?=$page->string["section_festivals"]?>
  9. </a>
  10. <a href='<?=$base_url?>/actividades/'>
  11. <?=$page->string["section_activities"]?>
  12. </a>
  13. <a href='<?=$base_url?>/blog/'>
  14. <?=$page->string["section_blog"]?>
  15. </a>
  16. <a href='<?=$base_url?>/nosotros/'>
  17. <?=$page->string["section_us"]?>
  18. </a>
  19. <a href='<?=$base_url?>/galeria/'>
  20. <?=$page->string["section_gallery"]?>
  21. </a>
  22. </header>