63 lines
No EOL
3.5 KiB
PHP
63 lines
No EOL
3.5 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">
|
|
<?php if($inicio->descripcion_sitio): ?>
|
|
<meta name="description" content="<?php echo $configuracion['nome_sitio'] . ' ' . $configuracion['descripcion_sitio']; ?>" />
|
|
<?php endif; ?>
|
|
<meta name="msapplication-TileColor" content="#12a19b">
|
|
<meta name="msapplication-config" content="<?php echo $config->urls->templates?>images/browserconfig.xml">
|
|
<meta name="theme-color" content="#12a19b">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="<?php echo $config->urls->templates?>images/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo $config->urls->templates?>images/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="<?php echo $config->urls->templates?>images/favicon-16x16.png">
|
|
<link rel="manifest" href="<?php echo $config->urls->templates?>images/site.webmanifest">
|
|
<link rel="mask-icon" href="<?php echo $config->urls->templates?>images/safari-pinned-tab.svg" color="#12a19b">
|
|
<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 title="Praia de Seselle" rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates?>css/style.css" />
|
|
<?php foreach($languages as $idioma): ?>
|
|
<?php if(!$page->viewable($idioma)): continue; endif; ?>
|
|
<link rel="alternate" hreflang="<?php echo $inicio->getLanguageValue($idioma, 'name'); ?>" href="<?php echo $page->localHttpUrl($idioma); ?>" />
|
|
<?php endforeach; ?>
|
|
</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">
|
|
<h1 class="visually-hidden"><?php echo $configuracion['nome_sitio']; ?></h1>
|
|
</div>
|
|
<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>
|
|
<ul id="idiomas" class="contenedor columna separado fin">
|
|
<?php
|
|
foreach($languages as $idioma)
|
|
{
|
|
if(!$page->viewable($idioma))
|
|
{
|
|
continue;
|
|
}
|
|
?>
|
|
<li <?php echo $idioma->id == $user->language->id ? 'class="activo"' : ''; ?>>
|
|
<?php
|
|
$url = $page->localUrl($idioma);
|
|
$hreflang = $inicio->getLanguageValue($idioma, 'name');
|
|
?>
|
|
<a title="<?php echo $idioma->title; ?>" hreflang="<?php echo $hreflang;?>" href="<?php echo $url; ?>"><?php echo $hreflang; ?></a>
|
|
</li>
|
|
<?php } ?>
|
|
</ul>
|
|
<?php echo $menu; ?>
|
|
</nav>
|
|
</div>
|
|
</header>
|