You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
<?php
|
|
$section_label = 'conoscere';
|
|
?>
|
|
|
|
<header class="component-header">
|
|
|
|
<div class="container header-wrapper">
|
|
|
|
<img class="logo" src="/images/logoHeader.png">
|
|
|
|
<button class="hamburger hamburger--spring my-auto">
|
|
<span class="hamburger-box">
|
|
<span class="hamburger-inner"></span>
|
|
</span>
|
|
</button>
|
|
|
|
|
|
<nav class="menu-container">
|
|
<span class="menu-label">
|
|
<a href="/iolovolio" class="label">iolovolio</b></a>
|
|
</span>
|
|
|
|
<ul class="menu">
|
|
<li class="item <?php if($_GET['q'] == 'learn') { echo "active";}?>">
|
|
<a href="/learn" class="label">conoscere</a>
|
|
</li>
|
|
<li class="item <?php if($_GET['q'] == 'produce') { echo "active";}?>">
|
|
<a href="/produce" class="label">produrre</a>
|
|
</li>
|
|
<li class="item <?php if($_GET['q'] == 'buy') { echo "active";}?>">
|
|
<a href="/buy" class="label">acquistare</a>
|
|
</li>
|
|
<li class="item <?php if($_GET['q'] == 'recount') { echo "active";}?>">
|
|
<a href="/recount" class="label">raccontare</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
|
|
<?php
|
|
@include('components/sectionHeader/sectionHeader.php');
|
|
?>
|
|
</header>
|