49 lines
No EOL
3 KiB
PHP
49 lines
No EOL
3 KiB
PHP
<?php namespace ProcessWire;?><!DOCTYPE html>
|
|
<html lang="<?php echo _x('en', 'HTML language code'); ?>">
|
|
<head>
|
|
<title><?php echo $titulo; ?></title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo $config->urls->templates; ?>images/favicon-32x32.png">
|
|
<link rel="shortcut icon" href="<?php echo $config->urls->templates; ?>images/favicon.ico">
|
|
<link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates; ?>css/reset.css" />
|
|
<link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates; ?>css/fonts.css" />
|
|
<link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates; ?>css/swiper.css" />
|
|
<link title="Praia de Seselle" rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates?>css/style.css" />
|
|
<style>
|
|
:root
|
|
{
|
|
font-size: 16px;
|
|
|
|
--cor_60: <?php echo $configuracion['cor_fondo'] ?>;
|
|
--cor_30: <?php echo $configuracion['cor_principal'] ?>;
|
|
--cor_10: <?php echo $configuracion['cor_secundario'] ?>;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<a href="#contido" class="visually-hidden element-focusable bypass-to-main"><?php echo _x('Skip to content', 'bypass'); ?></a>
|
|
<header id="cabeceira">
|
|
<div class="contedor">
|
|
<div id="logo">
|
|
<picture>
|
|
<source srcset="<?php echo $config->urls->templates?>images/logo-praia-seselle-150x116.jpg" media="(max-width: 767px)">
|
|
<source srcset="<?php echo $config->urls->templates?>images/logo-praia-seselle-230x179.jpg" media="(min-width: 768px)">
|
|
<img src="<?php echo $config->urls->templates?>images/logo-praia-seselle.svg" alt="<?php echo _x('Logo of Praia de Seselle Tourist Apartments', 'Site logo'); ?>">
|
|
</picture>
|
|
<h1 class="visually-hidden"><?php echo $configuracion['sitio_nome']; ?> <?php echo $configuracion['sitio_descripcion']; ?></h1>
|
|
</div>
|
|
<label class="visually-hidden" for="interruptor"><?php echo _x('Open/Close menu', 'Menu Switch'); ?></label><input type="checkbox" name="interruptor" id="interruptor">
|
|
<div class="interruptor">
|
|
<span class="linna linna1"></span>
|
|
<span class="linna linna2"></span>
|
|
<span class="linna linna3"></span>
|
|
</div>
|
|
<nav id="menu">
|
|
<h2 class="visually-hidden"><?php echo _x('Menu', 'Navigation menu');?></h2>
|
|
<a href="/es" class="site_title"> <span>Volver</span></a>
|
|
<a href="/?logout=true">Log Out</a>
|
|
<?php echo $menu; ?>
|
|
</nav>
|
|
</div>
|
|
</header>
|