Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 93 | Rev 108 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
93 aurelien 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
3
	<head>
4
		<?php print $head ?>
5
    	<title><?php print $head_title ?></title>
6
    	<?php print $styles ?>
7
    	<?php print $scripts ?>
8
    	<!--[if lt IE 7]>
9
      		<?php print phptemplate_get_ie_styles(); ?>
10
    	<![endif]-->
11
  	</head>
12
 
13
  	<body<?php print phptemplate_body_class($left, $right); ?>>
14
 
15
		<div id="header-region" class="clear-block">
16
			<?php print $header; ?>
17
 
18
		</div>
19
 
94 aurelien 20
		<div class="titre_site">
21
			<span id="observatoire">Observatoire </span>
22
			<span id="des">des</span>
23
			<span id="saisons"> Saisons</span>
24
		</div>
25
 
93 aurelien 26
		<div id="wrapper" class="zone_principale">
94 aurelien 27
			<div class="navigation_niveau_1">
93 aurelien 28
				<?php if (isset($primary_links)) : ?>
94 aurelien 29
					<?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
93 aurelien 30
				<?php endif; ?>
94 aurelien 31
 
93 aurelien 32
				<?php if (isset($secondary_links)) : ?>
33
					<?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
34
				<?php endif; ?>
35
			</div>
36
 
37
			<?php $saisons = array('printemps', 'ete', 'automne','hiver'); $saison = $saisons[rand(0,3)]; ?>
38
			<div id="header" class="<?= $saison; ?>">
39
				<div id="logo-floater">
40
		        	<?php
41
						if ($logo || $site_title) {
42
							print '<h1><a href="'. check_url($front_page) .'" title="'. $site_title .'">';
43
							if ($logo) {
44
								print '<img src="'. check_url($logo) .'" alt="'. $site_title .'" id="logo" />';
45
							}
46
							print $site_html .'</a></h1>';
47
						}
48
					?>
49
				</div>
50
 
51
			</div> <!-- /header -->
52
 
53
			<div id="left">
54
				<?php if ($left): ?>
55
		        	<div id="sidebar-left" class="sidebar">
56
		          		<?php print $left ?>
57
		        	</div>
58
		      <?php endif; ?>
59
			</div><!-- /navigation -->
60
 
61
 
62
			<div id="center">
63
	          <?php print $breadcrumb; ?>
64
	          <?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
65
	          <?php print $help; ?>
66
 
67
	          <?php print $content ?>
68
 
69
	          <?php print $feed_icons ?>
70
 
71
      		</div><!-- centre -->
94 aurelien 72
 
73
      		<div id="right">
93 aurelien 74
	      		<?php if ($right): ?>
75
					<div id="sidebar-right" class="sidebar">
76
						<?php print $right ?>
77
					</div><!-- zone droite -->
78
				<?php endif; ?>
79
			</div>
94 aurelien 80
 
81
      		<div id="footer">
82
				<?php print $footer_message ?>
83
			</div><!-- pied de page -->
93 aurelien 84
 
85
		</div> <!--fermeture div zone-principale-->
86
	</body>
87
</html>