-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
39 lines (32 loc) · 1.24 KB
/
header.php
File metadata and controls
39 lines (32 loc) · 1.24 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
<!doctype html>
<!--[if IE 9]><html class="lt-ie10" lang="en" > <![endif]-->
<html class="no-js" lang="en" data-useragent="Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><?php bloginfo('name'); ?><?php wp_title(); ?> </title>
<meta name="description" content="WP-Rationale, a WordPress theme based on Foundation 5" />
<meta name="author" content="J White" />
<meta name="copyright" content="ZURB, inc. Copyright (c) 2013" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url');?>" />
<?php wp_head(); ?>
</head>
<body>
<!-- Nav Bar -->
<div class="fixed">
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1><a href="<?php echo site_url(); ?>"><?php bloginfo('name'); ?></a></h1>
</li>
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
</ul>
<section class="top-bar-section">
<!-- Left Nav Section -->
<ul class="left">
<?php wp_list_pages(array('title_li' => '', 'exclude' => 4)); ?>
</ul>
</section>
</nav>
</div>
<!-- End Nav -->