-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
executable file
·51 lines (44 loc) · 1.9 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 IE 6]>
<html id="ie6" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 7]>
<html id="ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html id="ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><?php wp_title('|',true,'right'); bloginfo('name'); ?></title>
<meta name="author" content="">
<meta name="description" content="<?php bloginfo('description'); ?>">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<link rel="shortcut icon" href="<?php bloginfo('template_url'); ?>/images/favicon.ico">
<link rel="apple-touch-icon" href="<?php bloginfo('template_url'); ?>/images/apple-touch-icon.png">
<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('title'); ?> RSS Feed" href="/feed/" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div class="container" id="body-container">
<header class="clearfix">
<a id="header-logo" title="<?php bloginfo('title'); ?>" href="/"><img src="<?php bloginfo('template_url'); ?>/images/header_logo.png" alt="<?php bloginfo('title'); ?>" /></a>
<h2 class="strap"><?php bloginfo('description'); ?></h2>
<nav>
<!-- Main page nav -->
<ul>
<?php
$nav_args = array(
'sort_column' => 'menu_order, post_title'
);
wp_list_pages($nav_args);
?>
</ul>
</nav>
</header>