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

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

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


Revision 1.6 - (show annotations) (download) (as text)
Tue Dec 23 14:31:18 2008 UTC (11 months ago) by ktleow
Branch: MAIN
CVS Tags: DRUPAL-6--2-0-BETA1, DRUPAL-6--2-0-BETA2, DRUPAL-6--2-0-BETA3, HEAD
Changes since 1.5: +38 -39 lines
File MIME type: text/x-php
New version. Some changes to style.css.
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="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
3
4 <head>
5 <title><?php print $head_title; ?></title>
6 <?php print $head; ?>
7 <?php print $styles; ?>
8 <!--[if lte IE 7]>
9 <link type="text/css" rel="stylesheet" media="all" href="<?php print $base_path ?><?php print path_to_theme() ?>/fix-ie.css" />
10 <![endif]-->
11 <?php print $scripts; ?>
12 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?> </script>
13 </head>
14
15 <body>
16 <div id="upper">
17 <div class="container">
18 <div id="primary-and-search-box">
19 <?php if (!empty($primary_links)): ?>
20 <div id="primary">
21 <?php print menu_tree($menu_name = 'primary-links') ?>
22 </div> <!-- /#primary -->
23 <?php endif; ?>
24
25 <?php if (!empty($search_box)): ?>
26 <div id="search-box">
27 <?php print $search_box; ?>
28 </div> <!-- /#search-box -->
29 <?php endif; ?>
30 </div> <!-- /#nice-menu-and-search-box -->
31
32 <div id="site-name-and-slogan" class="clear-block">
33 <?php if (!empty($site_name)): ?>
34 <div id="site-name">
35 <a href="<?php print $front_page ?>" title="<?php print t('Home'); ?>" rel="home"><?php print $site_name; ?></a>
36 </div> <!-- /#site-name -->
37 <?php endif; ?>
38
39 <?php if (!empty($site_slogan)): ?>
40 <div id="site-slogan">
41 <?php print $site_slogan; ?>
42 </div> <!-- /#site-slogan -->
43 <?php endif; ?>
44 </div> <!-- /#site-name-and-slogan -->
45
46 <div id="main-and-sidebar" class="clear-block">
47 <div id="main">
48 <?php if (!empty($mission)): ?><div id="mission"><?php print $mission; ?></div><?php endif; ?>
49 <?php if (!empty($title)): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?>
50 <?php if (!empty($tabs)): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
51 <?php if (!empty($messages)): ?><div class="clear-block"><?php print $messages; ?></div><?php endif; ?>
52 <?php if (!empty($help)): ?><div class="clear-block"><?php print $help; ?></div><?php endif; ?>
53 <div id="content" class="clear-block">
54 <?php print $content; ?>
55 </div> <!-- /#content -->
56 <?php print $feed_icons; ?>
57 </div> <!-- /#main -->
58
59 <div id="sidebar">
60 <?php print $sidebar; ?>
61 </div> <!-- /#sidebar -->
62 </div> <!-- /#main-and-sidebar -->
63
64 <?php if (!empty($bottom)): ?>
65 <div id="bottom-region" class="clear-block">
66 <?php print $bottom; ?>
67 </div> <!-- /#bottom-region -->
68 <?php endif; ?>
69 </div> <!-- /.container -->
70 </div> <!-- /#upper -->
71
72 <div id="lower" class="clear-block">
73 <div id="bottom">
74 <div class="container">
75 <div id="bottom-left-and-centre">
76 <div id="bottom-left">
77 <?php print $bottom_left; ?>
78 </div> <!--/#bottom-left -->
79
80 <div id="bottom-centre">
81 <?php print $bottom_centre; ?>
82 </div> <!-- /#bottom-centre -->
83
84 </div> <!-- /#bottom-left-and-centre -->
85
86 <div id="bottom-right">
87 <?php print $bottom_right; ?>
88 </div> <!-- /#bottom-right -->
89 </div> <!-- /.container -->
90 </div> <!-- /#bottom -->
91
92 <div id="footer-wrapper" class="clear-block">
93 <div class="container">
94 <?php if (!empty($secondary_links)): ?>
95 <div id="secondary">
96 <?php print theme('links', $secondary_links, array('class' => 'secondary-links')); ?>
97 </div> <!-- /#secondary -->
98 <?php endif; ?>
99
100 <div id="footer">
101 <?php print $footer_message; ?>
102 <div id="theme-credits" class="clear-block"><?php print '<a href="http://drupal.org/project/agregado" title="Download Agregado Drupal theme.">Agregado</a> Drupal ' . t('theme by') . ' ' . '<a href="http://kahthong.com/" title="Visit Leow Kah Thong\'s website.">Leow Kah Thong</a><br />' . t('Designed by') . ' <a href="http://www.darrenhoyt.com/" title="Visit Darren Hoyt\'s website.">Darren Hoyt</a>'; ?></div>
103 </div> <!-- /#footer -->
104 </div> <!-- /.container -->
105 </div> <!-- /#footer-wrapper -->
106 </div> <!-- /#lower -->
107
108 <?php print $closure; ?>
109 </body>
110 </html>

  ViewVC Help
Powered by ViewVC 1.1.2