source: trunk/www.guidonia.net/wp/wp-content/themes/blueleanmagazine/header.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 1.9 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
3
4<!-- BEGIN html head -->
5<head profile="http://gmpg.org/xfn/11">
6<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
7<title><?php bloginfo('name'); ?> <?php wp_title(); ?></title>
8<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" />
9<!--[if lte IE 6]>
10<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/ie.css" />
11<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/unitpngfix.js"></script>
12<![endif]-->
13<?php if (function_exists('wp_enqueue_script') && function_exists('is_singular')) : ?>
14<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
15<?php endif; ?>
16<?php wp_head(); ?>
17<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery-1.3.2.min.js"></script>
18<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/scripts.js"></script>
19<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/video.js"></script>
20</head>
21<!-- END html head -->
22
23<body>
24
25<!-- BEGIN wrapper -->
26<div id="wrapper">
27
28 <!-- BEGIN header -->
29 <div id="header">
30
31 <ul class="pages">
32 <li><a href="<?php echo get_option('home'); ?>">Home</a></li>
33 <?php dp_list_pages(); ?>
34 </ul>
35
36 <p class="links"><a href="#">Email</a> | <a href="<?php bloginfo('rss2_url'); ?>">Posts</a> | <a href="<?php bloginfo('comments_rss2_url'); ?>">Comments</a></p>
37
38 <h1><a href="<?php echo get_option('home'); ?>"><?php bloginfo('name'); ?></a></h1>
39
40 <div class="ad"><a href="#"><img src="<?php bloginfo('template_url'); ?>/images/ad468x60.jpg" alt="Advertisment" /></a></div>
41
42 <ul class="categories">
43 <?php dp_list_categories(); ?>
44 </ul>
45
46 </div>
47 <!-- END header -->
48
49 <div id="body">
Note: See TracBrowser for help on using the repository browser.