-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
executable file
·46 lines (38 loc) · 1.96 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
<!doctype html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
<link href="//www.google-analytics.com" rel="dns-prefetch">
<link href="<?php echo get_template_directory_uri(); ?>/img/icons/favicon.ico" rel="shortcut icon">
<link href="<?php echo get_template_directory_uri(); ?>/img/icons/touch.png" rel="apple-touch-icon-precomposed">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<?php bloginfo('description'); ?>">
<?php wp_head(); ?>
<!-- Font Server -->
<script type="text/javascript" src="//fast.fonts.net/jsapi/34a16449-cd63-4478-9b74-36678baaedc2.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.0/TweenMax.min.js"></script>
<script>
var templateDir = "<?php bloginfo('template_directory') ?>";
conditionizr.config({
assets: '<?php echo get_template_directory_uri(); ?>',
tests: {}
});
</script>
</head>
<body <?php body_class(); ?>>
<!-- <div class="grid-mid"></div> -->
<header class="site-hdr-wrp">
<div class="site-hdr-inr">
<img class="site-lgo-hdr" src="<?php echo get_template_directory_uri(); ?>/lib/asset/img/FluxLogo-Icon.png" />
<img class="site-lgo-hdr site-lgo-hdr-txt" src="<?php echo get_template_directory_uri(); ?>/lib/asset/img/FluxLogo-Text.svg" />
<div class="site-lgo-sub"><?php the_title(); ?></div>
</div>
<nav class="site-nav-wrp">
<ul class="site-nav-inr"><?php wp_nav_menu( array( 'items_wrap' => '%3$s', 'theme_location' => 'header-menu' ) ); ?></ul>
</nav>
</header>
<div class="site-bg"></div>
<div class="site-content">