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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
| <!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 bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
<meta http-equiv="content-type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" />
<meta name="description" content="<?php bloginfo('description') ?>" />
<?php if(is_search()) { ?>
<meta name="robots" content="noindex, nofollow" />
<?php }?>
<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" media="screen" />
<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'); ?>" />
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/styles/nav.css" type="text/css" media="screen" />
<link rel="shortcut icon" href="<?php bloginfo('template_url'); ?>/images/favicon.ico" />
<script type="text/javascript" src="<?php echo bloginfo('template_url'); ?>/scripts/slider.js"></script>
<script type="text/javascript" src="<?php echo bloginfo('template_url'); ?>/scripts/dropdowns.js"></script>
<script type="text/javascript" src="<?php echo bloginfo('template_url'); ?>/scripts/featuredcontentglider.js"></script>
<script type="text/javascript" src="<?php echo bloginfo('template_url'); ?>/scripts/jquery-1.2.3.pack.js"></script>
<script type="text/javascript">
featuredcontentglider.init({
gliderid: "headline-content",
contentclass: "glidecontent",
togglerid: "teaser",
remotecontent: "",
selected: 0,
persiststate: false,
speed: 300,
direction: "leftright",
autorotate: true,
autorotateconfig: [100, 0]
})
</script>
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<script type="text/javascript">
menuscript.definemenu("tab_menu", 0)
</script>
<?php wp_head(); ?>
</head>
<body>
<div id="page-wrap">
<div id="header">
<div id="logo">
<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<h2><?php bloginfo('description'); ?></h2>
</div>
<div id="search">
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
</div>
</div> <!-- end header -->
<div id="main-wrap">
<div id="menu">
<ul>
<li><a href="<?php echo get_option('home'); ?>">Home</a></li>
<?php wp_list_pages('title_li='); ?>
<li><a href="<?php bloginfo('rss2_url'); ?>">RSS</a></li>
<li><a href="<?php bloginfo('rss2_url'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/feed.png" alt="RSS" /></a> </li>
</ul >
</div> <!-- end nav -->
<div id="categ">
<ul id="nav" class="clearfloat">
<li><a href="<?php echo get_option('home'); ?>/" class="on">Home</a></li>
<?php wp_list_categories('orderby=ID&order=ASC&depth=3&title_li=&exclude='); ?>
</ul>
</div> <!-- end categ -->
<div id="content-wrap"> |
Partager