-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
82 lines (80 loc) · 3.25 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
$slug = get_post_field( 'post_name', get_post() );
$site_title = get_bloginfo( 'name' );
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>
<?php
echo $site_title;
?>
</title>
<link rel="stylesheet" rel="preload" as="style" onload="this.rel = 'stylesheet'" href="<?php echo get_stylesheet_directory_uri().'/style.css'; ?>">
<link href='https://api.mapbox.com/mapbox-gl-js/v2.10.0/mapbox-gl.css' rel='stylesheet' />
<meta name="description" content="Profitez d'un service premium et sur mesure dans toute la Suisse romande pour garantir la sécurité et le confort de vous et de vos proches.
Bénéficiez des meilleurs partenaires, adaptés à vos besoins privés et entreprise, en restant informé(e) des nouveautés du marché.
Obtenez les tarifs les plus attractifs, délivrés par notre équipe de conseillers polyalents, dans une relation dynamique axée sur le côté humain." />
<meta name="og:type" content="website">
<meta name="og:title" content="<?php
echo $site_title;
?>">
<meta name="og:url" content="https://www.ipfconsulting.ch/">
<meta name="og:image" content="<?php echo get_stylesheet_directory_uri().'/assets/LOGO-OK.png'; ?>">
<link rel="icon" type="image/png" href="<?php echo get_stylesheet_directory_uri().'/favicon.png'; ?>">
<script src="https://kit.fontawesome.com/bfcdb5dbe1.js" crossorigin="anonymous"></script>
<script src='https://api.mapbox.com/mapbox-gl-js/v2.10.0/mapbox-gl.js'></script>
<script src="<?php echo get_stylesheet_directory_uri().'/main.js'; ?>" defer></script>
<noscript>
<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri().'/style.css'; ?>">
</noscript>
</head>
<body>
<header>
<a href="/" class="logo">
<img src="<?php echo get_stylesheet_directory_uri().'/assets/LOGO-OK.png'; ?>">
</a>
<nav id="nav" class="hidden-smartphone">
<ul>
<li>
<a href="/" class="<?php echo ($slug == 'telephone') ? 'active' : ''; ?>">
Accueil
</a>
</li>
<li>
<a href="/activites" class="<?php echo ($slug == 'activites') ? 'active' : ''; ?>">
Activités
</a>
</li>
<li>
<a href="/services" class="<?php echo ($slug == 'services') ? 'active' : ''; ?>">
Services
</a>
</li>
<li>
<a href="/contact" class="<?php echo ($slug == 'contact') ? 'active' : ''; ?>">
Contact
</a>
</li>
<li>
<a href="/advantages-card" class="<?php echo ($slug == 'advantages-card') ? 'active' : ''; ?>">
Advantages card
</a>
</li>
<li>
<a href="/partenaires" class="<?php echo ($slug == 'partenaires') ? 'active' : ''; ?>">
Partenaires
</a>
</li>
</ul>
</nav>
<button id="open-button" onclick="openMenu()" class="hidden-desktop">
<i class="fa-solid fa-bars fa-2xl"></i>
</button>
<button id="close-button" onclick="closeMenu()" class="hidden-smartphone hidden-desktop">
<i class="fa-solid fa-xmark fa-2x"></i>
</button>
</header>