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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Sun Nov 25 15:29:14 2007 UTC (2 years ago) by themester
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
initial version
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 <title><?php print $head_title; ?></title>
6 <?php print $head; ?>
7 <?php print $styles; ?>
8 <?php print $scripts; ?>
9 </head>
10
11 <?php /* different ids allow for separate theming of the home page */ ?>
12 <body class="<?php print $body_classes; ?>">
13 <div id="page">
14 <div id="header">
15 <div id="masthead">
16
17 <?php if ($logo): ?>
18 <a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>">
19 <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo" />
20 </a>
21 <?php endif; ?>
22
23 <div id="name-and-slogan">
24
25 <?php if ($site_name): ?>
26 <h1 id='site-name'>
27 <a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>">
28 <?php print $site_name; ?>
29 </a>
30 </h1>
31 <?php endif; ?>
32
33 <?php if ($site_slogan): ?>
34 <div id='site-slogan'>
35 <?php print $site_slogan; ?>
36 </div>
37 <?php endif; ?>
38
39 </div> <!-- /name-and-slogan --><br />
40
41 </div> <!-- /masthead -->
42
43
44 <div id="navigation" class="menu <?php if ($primary_links) { print "withprimary"; } if ($secondary_links) { print " withsecondary"; } ?> ">
45 <!--[if IE]><div id="IEroot"><![endif]--><?php print $search_box; ?><!--[if IE]></div><![endif]-->
46
47 <?php if ($primary_links): ?>
48 <div id="primary" class="clear-block">
49 <?php print theme('links', $primary_links); ?>
50 </div>
51 <?php endif; ?>
52
53 <?php if ($secondary_links): ?>
54 <div id="secondary" class="clear-block">
55 <?php print theme('links', $secondary_links); ?>
56 </div>
57 <?php endif; ?>
58 </div> <!-- /navigation -->
59
60 </div> <!-- /header -->
61
62 <div id="container" class="clear-block">
63
64 <div id="main" class="column"><div id="squeeze">
65 <?php if ($breadcrumb): ?><?php print $breadcrumb; ?><?php endif; ?>
66 <?php if ($mission): ?><div id="mission"><?php print $mission; ?></div><?php endif; ?>
67 <?php if ($above_content_region):?><div id="content-top"><?php print $above_content_region; ?></div><?php endif; ?>
68 <?php if ($title): ?><h1 class="title"><?php print $title; ?></h1><?php endif; ?>
69 <?php if ($tabs): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
70 <?php print $help; ?>
71 <?php print $messages; ?>
72 <?php print $content; ?>
73 <?php if ($below_content_region): ?><div id="content-bottom"><?php print $below_content_region; ?></div><?php endif; ?>
74 </div></div> <!-- /squeeze /main -->
75
76 <?php if ($left_region): ?>
77 <div id="sidebar-left" class="column sidebar">
78 <?php print $left_region; ?>
79 </div> <!-- /sidebar-left -->
80 <?php endif; ?>
81
82 <?php if ($right_region): ?>
83 <div id="sidebar-right" class="column sidebar">
84 <?php print $right_region; ?>
85 </div> <!-- /sidebar-right -->
86 <?php endif; ?>
87
88 </div> <!-- /container -->
89
90 <?php if ($footer_menu): ?> <div id="footer-wrapper"> <div id="footer-menu" class="clear-block"> <?php print $footer_menu; ?> </div> </div> <?php endif; ?>
91
92 <div id="footer-region">
93
94 <?php if ($footer_left): ?> <div id="footer-left"> <?php print $footer_left; ?> </div> <?php endif; ?>
95 <?php if ($footer_mid): ?> <div id="footer-mid"> <?php print $footer_mid; ?> </div> <?php endif; ?>
96 <?php if ($footer_right): ?> <div id="footer-right"> <?php print $footer_right; ?> </div> <?php endif; ?>
97
98 <div id="footer">
99 <?php print $footer_message; ?> <?php if ($feed_icons): ?><span id="subscribe-icon">Subscribe to this feed: <?php print $feed_icons; ?></span><?php endif; ?> <p><a href="http://5thirtyone.com/grid-focus" title="Grid Focus by: Derek Punsalan">Grid Focus</a> theme by <a href="http://5thirtyone.com">Derek Punsalan</a>, ported to <a href="http://drupal.org">Drupal</a> by <a href="http://neemtree.com.au">Neem Tree</a>.</p>
100 </div> <!-- /footer -->
101 </div> <!-- /footer-wrapper -->
102
103 <?php print $closure; ?>
104
105 </div> <!-- /page -->
106
107 </body>
108 </html>

  ViewVC Help
Powered by ViewVC 1.1.2