-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
52 lines (44 loc) · 1.22 KB
/
Copy pathheader.php
File metadata and controls
52 lines (44 loc) · 1.22 KB
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
<!DOCTYPE html>
<html <?php language_attributes(); ?> >
<head>
<meta http-equiv="content-type" content="<?php bloginfo('html_type'); ?>" charset="<?php bloginfo('charset'); ?>" />
<title>
<?php
bloginfo('name');
if(is_single())
echo "» Blog Archive";
wp_title();
?>
</title>
<!-- font face import -->
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,300italic|Source+Code+Pro|Oswald:400,700' rel='stylesheet' type='text/css'>
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<!--[if lt IE 9]>
<script src=”http://html5shim.googlecode.com/svn/trunk/html5.js”></script>
<![endif]-->
<?php
if( is_singular())
wp_enqueue_script('comment-reply');
?>
<?php wp_head (); ?>
</head>
<body <?php body_class(); ?> >
<div class="wrapper cf">
<header>
<div class="masthead">
<h1>
<a href="<?php bloginfo('url'); ?>" id="site_name" >
<?php bloginfo('name'); ?>
</a>
</h1>
<p>
<?php bloginfo( 'description'); ?>
</p>
</div>
<!-- end masthead -->
<nav class="top">
<?php wp_nav_menu(); ?>
</nav>
</header>