-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
51 lines (38 loc) · 1.82 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
<!doctype html>
<!--[if lte IE 9 ]><html class="browser-not-compatible"><![endif]-->
<!--[if (gt IE 9)|!(IE) ]><html><![endif]-->
<head>
<title><? wp_title( '|', true, 'right' ); ?><? bloginfo('name') ?> | <? bloginfo('description') ?></title>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta http-equiv="Content-Language" content="fr_FR" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<link rel="icon" href="<?= get_stylesheet_directory_uri() ?>/assets/images/favicon-192x192.png" sizes="192x192">
<link rel="apple-touch-icon" href="<?= get_stylesheet_directory_uri() ?>/assets/images/favicon-192x192.png">
<meta name="google-site-verification" content="" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<link href="<?= get_stylesheet_directory_uri() ?>/app.css" rel="stylesheet" />
<script>
var template_dir = "<?= get_stylesheet_directory_uri() ?>";
var site_url = "<?= site_url() ?>";
</script>
<?
global $post, $parent;
wp_head();
?>
</head>
<body <? body_class() ?>>
<!-- <div class="loading">
<img class="loading-logo" src="<?= get_stylesheet_directory_uri() ?>/assets/images/logo-loader.svg">
</div> -->
<header class="header">
<div class="header-inner">
<a href='<?= site_url() ?>' class="header-logo">
<img src="<?= get_stylesheet_directory_uri() ?>/assets/images/logo.png">
</a>
<div class="header-side">
<div class="header-side-main"><?= get_field('header_side_main', 'option') ?></div>
<div class="header-side-secondary"><?= get_field('header_side_secondary', 'option') ?></div>
</div>
</div>
</header>
<main>