/[drupal]/contributions/themes/amadou/page.tpl.php
ViewVC logotype

Contents of /contributions/themes/amadou/page.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.8 - (show annotations) (download) (as text)
Mon Jul 23 04:51:28 2007 UTC (2 years, 4 months ago) by jwolf
Branch: MAIN
CVS Tags: HEAD
Changes since 1.7: +94 -29 lines
File MIME type: text/x-php
updating HEAD
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" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
3
4 <head>
5
6 <title><?php print $head_title ?></title>
7 <?php print $head ?>
8 <?php print $styles ?>
9 <?php print $scripts ?>
10 <!--[if IE 6]>
11 <style type="text/css" media="all">@import "<?php print base_path() . path_to_theme() ?>/ie-fixes/ie6.css";</style>
12 <![endif]-->
13 <!--[if lt IE 7.]>
14 <script defer type="text/javascript" src="<?php print base_path() . path_to_theme() ?>/ie-fixes/pngfix.js"></script>
15 <![endif]-->
16
17 </head>
18
19 <body>
20
21 <!-- begin wrapper -->
22 <div id="container">
23
24 <!-- primary links -->
25 <div id="menu">
26 <?php print theme('menu_links', $primary_links) ?>
27 </div><!-- end primary links -->
28
29
30
31 <!-- begin header -->
32 <div id="header">
33
34
35 <!-- site logo -->
36 <?php if ($logo) { ?>
37 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
38 <img class="logo" src="<?php print $logo ?>" alt="<?php print t('Home') ?>" />
39 </a>
40 <?php } ?><!-- end site logo -->
41
42 <!-- site name -->
43 <?php if ($site_name) : ?>
44 <h1>
45 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
46 <?php print $site_name ?>
47 </a>
48 </h1>
49 <?php endif; ?><!-- end site name -->
50 <!-- site slogan -->
51 <?php if ($site_slogan) : ?>
52 <h2>
53 <?php print $site_slogan ?>
54 </h2>
55 <?php endif; ?><!-- end site slogan -->
56
57 </div><!-- end header -->
58
59 <!-- search box in nowhere land - NEEDS WORK-->
60 <?php if ($search_box) : ?>
61 <div id="searchBox">
62 <div class="wrap">
63 <div class="form-item">
64 <?php print $search_box ?>
65 </div>
66 </div>
67 </div>
68 <?php endif; ?><!-- end search box -->
69
70
71 <!-- content -->
72 <!-- <div id="main">-->
73 <!-- begin main content -->
74 <div id="mainContent" style="width: <?php print amadou_get_mainContent_width( $sidebar_left, $sidebar_right) ?>px;">
75
76 <?php if ($mission) { ?><div class="mission"><?php print $mission ?></div><?php } ?>
77 <?php if ($breadcrumb) { ?><div class="breadcrumb"><?php print $breadcrumb ?></div><?php } ?>
78 <?php if ($title) { ?><h1 class="pageTitle"><?php print $title ?></h1><?php } ?>
79 <?php if ($tabs) { ?><div class="tabs"><?php print $tabs ?></div><?php } ?>
80 <?php if ($help) { ?><div class="help"><?php print $help ?></div><?php } ?>
81 <?php if ($messages) { ?><div class="messages"><?php print $messages ?></div><?php } ?>
82 <?php print $content_top; ?>
83 <?php print $content; ?>
84 <?php print $content_bottom; ?>
85 <?php print $feed_icons; ?>
86
87 </div>
88
89 <!-- Begin Sidebars -->
90 <div id="sideBars-bg" style="width: <?php print amadou_get_sideBars_width( $sidebar_left, $sidebar_right) ?>px;">
91 <div id="sideBars" style="width: <?php print amadou_get_sideBars_width( $sidebar_left, $sidebar_right) ?>px;">
92
93 <!-- left sidebar -->
94 <?php if ($sidebar_left) { ?>
95 <div id="leftSidebar">
96 <?php print $sidebar_left ?>
97 </div>
98 <?php } ?>
99
100 <!-- right sidebar -->
101 <?php if ($sidebar_right) { ?>
102 <div id="rightSidebar">
103 <?php print $sidebar_right ?>
104 </div>
105 <?php } ?>
106
107 </div><!-- end sidebars -->
108 </div><!-- end sideBars-bg -->
109
110
111
112 <!-- footer -->
113 <div id="footer">
114 <?php print $footer_message ?>
115 </div><!-- end footer -->
116
117 </div><!-- end container -->
118
119 <?php print $closure ?>
120 </body>
121 </html>

  ViewVC Help
Powered by ViewVC 1.1.2