public
Description: Wordpress template based on the default template but modified for use as a starting point for theme designers.
Homepage: http://www.poweredbygeek.com/
Clone URL: git://github.com/lwallenstein/designers-default.git
designers-default / header.php
100755 49 lines (37 sloc) 2.149 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
 
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="description" content="<?php bloginfo('description'); ?>" />
<meta name="keywords" content="<?php the_tags('','',','); ?>" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Content-Language" content="en-us" />
<title><?php wp_title(); ?> :: <?php bloginfo('name'); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/print.css" type="text/css" media="print" />
<!--[if lte IE 6]><style type="text/css" media="all">@import "<?php bloginfo('stylesheet_directory'); ?>/ie6.css";</style><![endif]-->
<!--[if gt IE 6]><style type="text/css" media="all">@import "<?php bloginfo('stylesheet_directory'); ?>/ie7.css";</style><![endif]-->
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_head(); ?>
 
</head>
 
<body>
 
<?php
// Checks to see whether it needs a sidebar or not
if ( !empty($withcomments) && !is_single() ) { ?>
<div id="page" class="container_16 <?php bloginfo('text_direction'); ?>">
<?php } else { // No sidebar ?>
<div id="page" class="container_16">
<?php } ?>
 
<div id="header">
<div id="headerimg">
<div id="header_window">
<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
</div>
</div>
</div>
<hr />