This repository has been archived by the owner on Jan 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
45 lines (40 loc) · 2.37 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
<!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" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php dynamictitles(); ?></title>
<?php if (is_single() || is_page() ) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<meta name="description" content="<?php the_excerpt_rss(); ?>" />
<?php endwhile; endif; elseif(is_home()) : ?>
<meta name="description" content="<?php bloginfo('description'); ?>" />
<?php endif; ?>
<?php if(is_search()) { ?>
<meta name="robots" content="noindex, nofollow" />
<?php }?>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen,projection" />
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/print.css" type="text/css" media="print" />
<link rel="shortcut icon" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicon.ico" />
<?php if ( is_singular() ) wp_enqueue_script('comment-reply'); // support for comment threading ?>
<?php wp_head(); ?>
</head>
<body <?php if (is_home()) { ?>id="home" <?php } ?>class="<?php bodystyle(); ?>">
<div id="page">
<?php wp_nav_menu( array( 'menu_id' => 'nav', 'theme_location' => 'primary' ) ); ?>
<?php /* commenting the old menus out
<ul id="nav" class="clearfloat">
<li <?php if ( is_home() ) { ?> class="current_page_item"<?php } ?>><a href="<?php echo get_option('home'); ?>/"><?php _e('Home','Mimbo'); ?></a></li>
<?php wp_list_pages('title_li='); ?>
</ul>
*/ ?>
<div id="wrapper" class="clearfloat">
<div class="clearfloat" id="masthead">
<a href="<?php echo home_url(); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/OC-logo.gif" alt="Salt Lake City Open Classroom" class="logo" /></a><br />
<div id="description"><?php bloginfo('description'); ?></div>
<h1 class="sitetitle"><a href="<?php echo home_url(); ?>/" title="<?php _e('Return Home','Mimbo'); ?>"><?php bloginfo('name'); ?></a></h1>
</div><!--END MASTHEAD-->
<?php wp_nav_menu( array( 'menu_id' => 'nav-cat', 'theme_location' => 'subnav' ) ); ?>
<?php /* commenting the old menus out
<ul id="nav-cat" class="clearfloat">
<?php wp_list_categories('title_li='); ?>
</ul>
*/ ?>