-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
36 lines (30 loc) · 2.21 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
<!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">
<title><?php wp_title( '-', true, 'right' ); echo wp_specialchars( get_bloginfo('name'), 1 ) ?></title>
<meta http-equiv="content-type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url') ?>" />
<?php wp_head() // For plugins ?>
<link rel="alternate" type="application/rss+xml" href="<?php bloginfo('rss2_url') ?>" title="<?php printf( __( '%s latest posts', 'sandbox' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" />
<link rel="alternate" type="application/rss+xml" href="<?php bloginfo('comments_rss2_url') ?>" title="<?php printf( __( '%s latest comments', 'sandbox' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url') ?>" />
</head>
<body class="<?php sandbox_body_class() ?>">
<div id="wrapper" class="hfeed">
<div id="header">
<h1 id="site-title"><span><a href="<?php bloginfo('home') ?>/" title="<?php echo wp_specialchars( get_bloginfo('name'), 1 ) ?>" rel="home"><?php bloginfo('name') ?></a></span></h1>
<div id="site-description"><?php bloginfo('description') ?></div>
</div><!-- #header -->
<div id="access">
<div class="skip-link"><a href="#content" title="<?php _e( 'Skip to content', 'sandbox' ) ?>"><?php _e( 'Skip to content', 'sandbox' ) ?></a></div>
<div id="menu">
<ul>
<li><a href="<?php bloginfo('home') ?>/" />Blog</a></li>
<li class="page_item page-item"><a href="<?php bloginfo('url') ?>/attend/" title="Attend">Attend</a></li>
<li class="page_item page-item"><a href="<?php bloginfo('url') ?>/schedule/" title="Schedule">Schedule</a></li>
<li class="page_item page-item"><a href="<?php bloginfo('url') ?>/program/" title="Program">Program</a></li>
<li class="page_item page-item"><a href="<?php bloginfo('url') ?>/contact/" title="Contact">Contact</a></li>
<li class="page_item page-item"><a href="<?php bloginfo('url') ?>/faqs" title="FAQs">FAQs</a></li>
</ul>
</div>
</div><!-- #access -->