- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
Latest commit
33 lines (30 loc) · 1.66 KB
/
Copy pathheader.php
File metadata and controls
33 lines (30 loc) · 1.66 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
<?php
/**
* @package WordPress
* @subpackage Grid_Focus
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?phpbloginfo('html_type'); ?>; charset=<?phpbloginfo('charset'); ?>" />
<title><?phpif (function_exists('is_tag') && is_tag()) { echo'Posts tagged "'.$tag.'" - '; } elseif (is_archive()) { wp_title(''); echo' Archive - '; } elseif (is_search()) { echo'Search for "'.wp_specialchars($s).'" - '; } elseif (!(is_404()) && (is_single()) || (is_page())) { wp_title(''); echo' - '; } elseif (is_404()) { echo'Not Found - '; } bloginfo('name'); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="generator" content="WordPress <?phpbloginfo('version'); ?>" />
<link rel="stylesheet" href="<?phpbloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="<?phpbloginfo('name'); ?> RSS Feed" href="<?phpbloginfo('rss2_url'); ?>" />
<?phpif ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?phpwp_enqueue_script('jquery'); ?>
<?phpwp_head(); ?>
</head>
<body>
<div id="wrapper">
<div id="masthead" class="fix">
<h1><a href="<?phpechoget_settings('home'); ?>/"><?phpbloginfo('name'); ?></a></h1>
<div id="blogLead">
<img src="<?phpbloginfo('template_directory'); ?>/images/avatar.png" alt="Icon" />
<p id="authorIntro"><?phpbloginfo('description'); ?></p>
</div>
</div>
<?phpinclude (TEMPLATEPATH . '/navigation.strip.php'); ?>