33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php // theme manager
|
|
// if(isset($_GET("settheme"))){
|
|
// if()
|
|
// }
|
|
?>
|
|
|
|
<header>
|
|
<section id="title">
|
|
<img src="img/logo.png" alt="Logo don't meet me" id="logo">
|
|
</section>
|
|
<section>
|
|
<nav>
|
|
<a href="#" class="burger_button" onclick="menu()">
|
|
<span class="bar"></span>
|
|
<span class="bar"></span>
|
|
<span class="bar"></span>
|
|
</a>
|
|
<div class="navbar_links hide">
|
|
<ul>
|
|
<li><a href="index.php">Acceuil</a></li>
|
|
<li><a href="for.php?gender=man">Trouve un homme !</a></li>
|
|
<li><a href="for.php?gender=woman">Trouve une femme ! </a></li>
|
|
<li><a href="contact.php">Qui sommes nous</a></li>
|
|
<li>
|
|
<section id="sec_switch">
|
|
<a onClick="updateTheme"><img src="img/switchoff.png" alt="bouton pour chager de thème" id="switch"></a>
|
|
</section>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
</section>
|
|
</header>
|