Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!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">
- <head>
- <title><?php bloginfo('name'); ?> <?php wp_title(); ?></title><?php wp_head(); ?>
- <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
- <!--CSS Main-->
- <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
- <!--JQuery-->
- <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery/jquery-1.4.2.min.js"></script>
- </head>
- <body>
- <!--Header-->
- <div id="header">
- <div class="wrap">
- <div id="logo">
- <?php if (!is_home()): ?><a href="<?php echo get_option('home'); ?>"><?php endif ?>
- <img src="<?php bloginfo('template_directory'); ?>/images/logo.png" class="logo" alt="" />
- <?php if (!is_home()): ?></a><?php endif ?>
- <span>The lifestyle bible for Cebu and Davao</span>
- </div>
- <!--Menu-->
- <?php if (function_exists('wp_nav_menu'))
- { wp_nav_menu( array(
- 'menu_class' => 'sf-menu typeface-js',
- 'fallback_cb' => 'display_home'
- ) ); }
- else
- {
- echo '<ul class="sf-menu">';
- if(is_home()) {
- echo '<li class="current_page_item"><a href="'.get_bloginfo('url').'">Home</a></li>'; }
- else {
- echo '<li><a href="'.get_bloginfo('url').'">Home</a></li>'; }
- wp_list_pages('title_li=');
- wp_list_categories('title_li=');
- echo '</ul>';
- }
- ?>
- </div>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment