This repository has been archived by the owner on Jul 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
69 lines (60 loc) · 2.85 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
62
63
64
65
66
67
68
69
<?php
/**
* Part: header.php
*
* @package WordPress
* @subpackage octopress-classic
* @since 1.0
*/
?><!DOCTYPE html>
<!--[if IEMobile 7 ]>
<html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]>
<html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!-->
<html class="no-js" <?php language_attributes(); ?>><!--<![endif]-->
<head>
<meta charset="utf-8">
<link rel="profile" href="http://gmpg.org/xfn/11"/>
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>"/>
<!--Fonts from Google's Web font directory at http://google.com/webfonts -->
<link href='http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic' rel='stylesheet'
type='text/css'><?php // @codingStandardsIgnoreLine: @TODO Enqueue this. ?>
<link href='http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic' rel='stylesheet'
type='text/css'><?php // @codingStandardsIgnoreLine: @TODO Enqueue this. ?>
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/favicon.ico" rel="icon">
<link href="<?php echo get_template_directory_uri(); ?>/style.css" media="screen" rel="stylesheet"
type="text/css"><?php // @codingStandardsIgnoreLine: @TODO Enqueue this. ?>
<script src="<?php echo get_template_directory_uri(); ?>/javascripts/modernizr-2.0.js"></script><?php // @codingStandardsIgnoreLine: @TODO Enqueue this. ?>
<script src="<?php echo get_template_directory_uri(); ?>/javascripts/ender.js"></script><?php // @codingStandardsIgnoreLine: @TODO Enqueue this. ?>
<script src="<?php echo get_template_directory_uri(); ?>/javascripts/octopress.js"></script><?php // @codingStandardsIgnoreLine: @TODO Enqueue this. ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header>
<hgroup>
<?php octopress_avatar(); ?>
<h1><a href="<?php echo esc_url(home_url('/')); ?>"><?php bloginfo('name'); ?></a></h1>
<h2><?php bloginfo('description'); ?></h2>
</hgroup>
</header>
<nav role="navigation"><!-- role required for app.js menu. do not remove -->
<!-- Mobile Nav -->
<ul class="subscription" data-subscription="rss">
<li><a href="<?php echo esc_url(get_feed_link()); ?>" type="application/rss+xml"
title="subscribe via RSS">RSS</a></li>
</ul>
<form role="search" method="get" id="searchform" class="searchform" action="<?php echo esc_url(home_url('/')); ?>">
<fieldset role="search"><!-- False positive: aria role valid. Bug in NU valivator -->
<input class="search" type="text" placeholder="Search" value="" name="s" id="s">
<input hidden type="submit" id="searchsubmit" value="Search">
</fieldset> <!-- Mobile Nav End -->
</form>
<ul class="main-navigation">
<?php wp_nav_menu(array('items_wrap' => '%3$s')); ?>
</ul>
</nav>