Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 150 | Rev 163 | 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>
108 aurelien 4
	<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>
93 aurelien 5
		<?php print $head ?>
6
    	<title><?php print $head_title ?></title>
7
    	<?php print $styles ?>
8
    	<?php print $scripts ?>
9
    	<!--[if lt IE 7]>
10
      		<?php print phptemplate_get_ie_styles(); ?>
11
    	<![endif]-->
12
  	</head>
13
 
14
  	<body<?php print phptemplate_body_class($left, $right); ?>>
15
 
16
		<div id="header-region" class="clear-block">
17
			<?php print $header; ?>
108 aurelien 18
			<?php print $closure; ?>
93 aurelien 19
		</div>
20
 
94 aurelien 21
		<div class="titre_site">
22
			<span id="observatoire">Observatoire </span>
23
			<span id="des">des</span>
24
			<span id="saisons"> Saisons</span>
25
		</div>
26
 
93 aurelien 27
		<div id="wrapper" class="zone_principale">
94 aurelien 28
			<div class="navigation_niveau_1">
93 aurelien 29
				<?php if (isset($primary_links)) : ?>
108 aurelien 30
					<?php print primary_links( $primary_links, array('class' => 'links primary-links')) ?>
93 aurelien 31
				<?php endif; ?>
94 aurelien 32
 
93 aurelien 33
				<?php if (isset($secondary_links)) : ?>
34
					<?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
35
				<?php endif; ?>
36
			</div>
37
 
38
			<?php $saisons = array('printemps', 'ete', 'automne','hiver'); $saison = $saisons[rand(0,3)]; ?>
39
			<div id="header" class="<?= $saison; ?>">
40
				<div id="logo-floater">
41
		        	<?php
42
						if ($logo || $site_title) {
43
							print '<h1><a href="'. check_url($front_page) .'" title="'. $site_title .'">';
44
							if ($logo) {
45
								print '<img src="'. check_url($logo) .'" alt="'. $site_title .'" id="logo" />';
46
							}
47
							print $site_html .'</a></h1>';
48
						}
49
					?>
50
				</div>
51
 
52
			</div> <!-- /header -->
53
 
54
			<div id="left">
55
				<?php if ($left): ?>
108 aurelien 56
					<div class="menu_recourbe"></div>
93 aurelien 57
		        	<div id="sidebar-left" class="sidebar">
58
		          		<?php print $left ?>
59
		        	</div>
60
		      <?php endif; ?>
61
			</div><!-- /navigation -->
62
 
63
 
64
			<div id="center">
65
	          <?php print $breadcrumb; ?>
66
	          <?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
67
	          <?php print $help; ?>
68
 
69
	          <?php print $content ?>
70
 
71
	          <?php print $feed_icons ?>
72
 
73
      		</div><!-- centre -->
94 aurelien 74
 
75
      		<div id="right">
93 aurelien 76
	      		<?php if ($right): ?>
77
					<div id="sidebar-right" class="sidebar">
108 aurelien 78
						<?php print $right; ?>
93 aurelien 79
					</div><!-- zone droite -->
80
				<?php endif; ?>
81
			</div>
94 aurelien 82
 
83
      		<div id="footer">
108 aurelien 84
				<?php print $footer_message; ?>
85
				<?php print $footer ;?>
86
				<div class="liens_bas_page">
147 vio 87
					<a id="lien_aide" class="lien_interne" href="http://www.obs-saisons.fr"> Aide </a>
88
					<a id="lien_rss" class="lien_interne" href="http://www.obs-saisons.fr"> FAQ </a>
160 vio 89
					<a id="lien_contact" class="lien_interne" href="<a href="<?php echo $GLOBALS['base_url']; ?>/contact"> Contact </a>
108 aurelien 90
				</div>
147 vio 91
				<div class="liens_bas_page">
150 vio 92
					<a id="lien_tela" class="lien_externe" href="http://www.tela-botanica.org"> Réalisation : Tela Botanica 2010 </a> -
147 vio 93
					<a id="lien_CMS" class="lien_externe" href="http://drupal.org/"> Drupal </a> -
94
				</div>
94 aurelien 95
			</div><!-- pied de page -->
93 aurelien 96
 
97
		</div> <!--fermeture div zone-principale-->
98
	</body>
99
</html>