-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
executable file
·47 lines (38 loc) · 1.53 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
<?php
/**
* @package WordPress
* @subpackage ResponSimple
* @since ResponSimple 2.0.1
*/
?><!doctype html>
<!--[if lt IE 11]><html class="no-js ie" <?php language_attributes(); ?>><![endif]-->
<!--[if gte IE 11]><!--><html class="no-js" <?php language_attributes(); ?>><!--<![endif]-->
<head profile="http://gmpg.org/xfn/11">
<meta charset="<?php echo get_bloginfo( 'charset' ); ?>" />
<!--[if IE ]>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<![endif]-->
<title><?php wp_title( '|', true, 'right' ); ?></title>
<meta name="viewport" content="width=device-width, initial-width=1" />
<meta name="description" content="" />
<meta name="author" content="<?php echo get_bloginfo( 'title' ) ?>" />
<meta name="copyright" content="Copyright <?php echo date('Y'); ?> <?php echo get_bloginfo( 'title' ) ?>. All Rights Reserved." />
<meta name="robots" content="index, follow" />
<!--[if lt IE 8]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5shiv.js"></script>
<![endif]-->
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" />
<link rel="pingback" href="<?php echo get_bloginfo('pingback_url'); ?>" />
<?php
if ( is_singular() && get_option('thread_comments') )
wp_enqueue_script( 'comment-reply' );
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<header class="site-header" role="banner">
<h1 class="site-title"><?php the_title(); ?></h1>
<nav class="main-nav" role="navigation">
<?php wp_nav_menu( array( 'container' => '', 'menu_id' => 'menu' ) ); ?>
</nav>
</header>