Files
2026-06-25 07:36:25 +02:00

43 lines
1.8 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/** Site header. */
$site_name = get_bloginfo( 'name' ) ?: 'Azione!Lab';
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#F3EBDD">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<a class="skip-link" href="#contenuto"><?php esc_html_e( 'Vai al contenuto', 'azionelab' ); ?></a>
<header class="site-header">
<div class="container header-inner">
<a class="wordmark" href="#inizio" aria-label="<?php echo esc_attr( $site_name . ', torna allinizio' ); ?>">
<?php echo esc_html( $site_name ); ?>
</a>
<nav class="desktop-nav" aria-label="<?php esc_attr_e( 'Navigazione principale', 'azionelab' ); ?>">
<a href="#laboratorio">Il laboratorio</a>
<a href="#maestro">Il maestro</a>
<a href="#lezioni">Le lezioni</a>
<a href="#spettacoli">Progetti</a>
<a href="#galleria">Galleria</a>
</nav>
<a class="button button-small desktop-cta" href="#contatti">Vieni a conoscerci</a>
<details class="mobile-menu">
<summary><span class="menu-icon" aria-hidden="true"></span><span>Menu</span></summary>
<nav aria-label="<?php esc_attr_e( 'Navigazione mobile', 'azionelab' ); ?>">
<a href="#laboratorio">Il laboratorio</a>
<a href="#maestro">Il maestro</a>
<a href="#lezioni">Le lezioni</a>
<a href="#spettacoli">Progetti</a>
<a href="#galleria">Galleria</a>
<a class="button button-small" href="#contatti">Vieni a conoscerci</a>
</nav>
</details>
</div>
</header>