-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·61 lines (51 loc) · 1.64 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
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section
*
* @package WordPress
* @subpackage Siren
* @version 3.8
*/
?><!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<link rel="icon" type="image/x-icon" href="<?php bloginfo( 'template_url' ); ?>/favicon.ico" />
<?php wp_head(); ?>
</head>
<?php if(isset($_COOKIE['fontloaded-project'])) { ?>
<body <?php body_class('font-loaded'); ?>>
<?php } else { ?>
<body <?php body_class(); ?>>
<?php } ?>
<!-- main-header -->
<header class="header" role="banner">
<!-- main-title -->
<div class="title">
<h1 class="title_logo">
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home" class="title_link">
<img src="<?php bloginfo( 'template_url' ); ?>/images/logo.png" alt="<?php bloginfo( 'name' ); ?>" class="title_image" />
</a>
</h1>
</div>
<div class="nav_container">
<nav class="nav" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav_list', 'menu_id' => 'navMenu') ); ?>
</nav>
</div>
</header>
<div class="page_container">