Subversion Repositories Sites.obs-saisons.fr

Compare Revisions

Ignore whitespace Rev 92 → Rev 93

/trunk/themes/ods/page.tpl.php
New file
0,0 → 1,80
<!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" xml:lang="fr">
<head>
<?php print $head ?>
<title><?php print $head_title ?></title>
<?php print $styles ?>
<?php print $scripts ?>
<!--[if lt IE 7]>
<?php print phptemplate_get_ie_styles(); ?>
<![endif]-->
</head>
<body<?php print phptemplate_body_class($left, $right); ?>>
<div id="header-region" class="clear-block">
<?php print $header; ?>
</div>
<div id="wrapper" class="zone_principale">
<div class="navigation_niveau_1">
<?php if (isset($primary_links)) : ?>
<?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
<?php endif; ?>
<?php if (isset($secondary_links)) : ?>
<?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
<?php endif; ?>
</div>
<?php $saisons = array('printemps', 'ete', 'automne','hiver'); $saison = $saisons[rand(0,3)]; ?>
<div id="header" class="<?= $saison; ?>">
<div id="logo-floater">
<?php
if ($logo || $site_title) {
print '<h1><a href="'. check_url($front_page) .'" title="'. $site_title .'">';
if ($logo) {
print '<img src="'. check_url($logo) .'" alt="'. $site_title .'" id="logo" />';
}
print $site_html .'</a></h1>';
}
?>
</div>
</div> <!-- /header -->
<div id="left">
<?php if ($left): ?>
<div id="sidebar-left" class="sidebar">
<?php print $left ?>
</div>
<?php endif; ?>
</div><!-- /navigation -->
<div id="center">
<?php print $breadcrumb; ?>
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
<?php print $help; ?>
<?php print $content ?>
<?php print $feed_icons ?>
</div><!-- centre -->
<div id="footer">
<?php print $footer_message ?>
</div><!-- pied de page -->
<div id="right">
<?php if ($right): ?>
<div id="sidebar-right" class="sidebar">
<?php print $right ?>
</div><!-- zone droite -->
<?php endif; ?>
</div>
</div> <!--fermeture div zone-principale-->
</body>
</html>