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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Tue Aug 12 20:32:34 2008 UTC (15 months, 1 week ago) by doncoryon
Branch: MAIN
CVS Tags: DRUPAL-6--2-0, DRUPAL-6--1-0, HEAD
Branch point for: DRUPAL-6--1, DRUPAL-6--2
File MIME type: text/x-php
Intial release
1 <?php
2 // $Id$
3 ?>
4 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
5 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
6
7 <head>
8 <title><?php print $head_title ?></title>
9 <?php print $head ?>
10 <?php print $styles ?>
11 <?php print $scripts ?>
12 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
13 </head>
14
15 <body>
16
17 <div id="wrapper">
18 <div id="header">
19 <div id="logo">
20 <?php if ($site_name) { ?><h1><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
21 <p> <?php if ($site_slogan) { ?><?php print $site_slogan ?><?php } ?></p>
22 </div>
23 <div id="searchbox">
24 <?php print $search_box ?>
25 </div>
26 <!-- end #search -->
27 </div>
28 <!-- end #header -->
29 <div id="menu">
30 <?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?><?php } ?>
31 </div>
32 <!-- end #menu -->
33 <div id="page">
34 <div id="content">
35 <div class="post">
36 <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
37 <?php print $breadcrumb ?>
38 <h1 class="title"><?php print $title ?></h1>
39 <div class="tabs"><?php print $tabs ?></div>
40 <?php if ($show_messages) { print $messages; } ?>
41 <?php print $help ?>
42 <div class="entry"><?php print $content; ?></div>
43 <?php print $feed_icons; ?>
44 </div>
45 </div>
46 <!-- end #content -->
47 <div id="sidebar">
48 <?php if ($right) { ?> <?php print $right ?> <?php } ?>
49 </div>
50 <!-- end #sidebar -->
51 <div style="clear: both;">&nbsp;</div>
52 </div>
53 <!-- end #page -->
54 </div>
55 <div id="footer">
56 <div class="message">
57 <?php print $footer_message ?>
58 </div>
59
60 <div class="coded">Design by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>. Ported by <a href="http://goodwinsolutions.com">Goodwin Web Solutions</a>.
61 </div>
62
63 </div>
64 <!-- end #footer -->
65 </body>
66 </html>

  ViewVC Help
Powered by ViewVC 1.1.2