-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathheader.php
More file actions
57 lines (57 loc) · 1.56 KB
/
header.php
File metadata and controls
57 lines (57 loc) · 1.56 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
53
54
55
56
57
<?php
/**
* WicketPixie
* (c) 2006-2011 Eddie Ringle <eddie@eringle.net>
* Provided by Chris Pirillo <chris@pirillo.com>
*
* Licensed under the New BSD License.
*/
?>
<!DOCTYPE html>
<html>
<head>
<title><?php wp_title('«', true, 'right'); bloginfo('name'); ?></title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="<?php wipi_template_uri(); ?>/css/style.css" />
<link rel="stylesheet" type="text/css" href="<?php wipi_template_uri(); ?>/css/superfish.css" />
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="<?php wipi_template_uri(); ?>/css/ie.css" />
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="<?php wipi_template_uri(); ?>/css/ie8_only.css" />
<![endif]-->
<?php
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<?php flush(); ?>
<?php wipi_before_wrapper(); ?>
<div id="wrapper">
<?php wipi_before_header(); ?>
<div id="header">
<div id="logo">
<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
</div>
<div id="sideline">
<p><?php bloginfo('description'); ?></p>
</div>
</div>
<?php wipi_after_header(); ?>
<div id="bodywrapper">
<div id="navigation">
<ul class="sf-menu">
<?php
if (!is_home()) {
?>
<li><a href="<?php bloginfo('url'); ?>">Home</a></li>
<?php
}
wp_list_pages('depth=3&sort_column=menu_order&title_li=');
?>
</ul>
<div class="clear"></div>
</div>
<div id="body">
<div id="page">
<?php wipi_before_page(); ?>