-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
64 lines (54 loc) · 2.1 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head <?php do_action( 'add_head_attributes' ); ?>>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google-site-verification" content="-snNuf9qHLlRhI4otn0BxPg5rf4JEuZzptP7kkvtrR4" />
<title><?php wp_title( ' | ', true, 'right' ); ?></title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-108533710-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-108533710-2');
</script>
<?php wp_head(); ?>
<script src="https://unpkg.com/packery@2/dist/packery.pkgd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/beefup@1.1.7/dist/js/jquery.beefup.min.js"></script>
<script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
</head>
<body <?php body_class( 'leading-normal font-aileron' ); ?>>
<div class="clip" aria-hidden="true"><?php require_once 'assets/img/icons.svg'; ?></div>
<b class="animsition-loading"></b>
<div class="wrapper loading flex flex-col">
<header id="header">
<div class="container-fluid">
<div class="navbar-header">
<a href="<?php echo esc_url( home_url() ); ?>" class="navbar-brand">
<span>
<em class="hidden-md hidden-lg"><?php esc_html_e( 'DDP', 'ddmp' ); ?></em>
<em class="hidden-xs hidden-sm"><?php echo get_bloginfo( 'name' ); ?></em>
</span>
</a>
<a href="#main-nav" class="navbar-toggle">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<em class="sr-only">toggle mobile menu</em>
</a>
</div>
<nav id="main-nav" class="relative text-center uppercase">
<?php
wp_nav_menu(
array(
'theme_location' => 'primary',
'container' => false,
'menu_class' => 'base',
)
);
?>
</nav>
</div>
</header>