/[drupal]/contributions/sandbox/mfredrickson/themes/nautilus/page.tpl.php
ViewVC logotype

Contents of /contributions/sandbox/mfredrickson/themes/nautilus/page.tpl.php

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


Revision 1.3 - (show annotations) (download) (as text)
Wed Jun 21 02:21:02 2006 UTC (3 years, 5 months ago) by mfredrickson
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +16 -13 lines
File MIME type: text/x-php
ready to announce to themes list
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <!-- layouts require "Standards Mode" rendering, which the 401-strict doctype triggers -->
3 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language; ?>" xml:lang="<?php print $language; ?>">
4 <head>
5 <title><?php print $head_title; ?></title>
6 <?php print $head; ?>
7 <?php print $nautilus_styles; ?>
8 <?php print $styles; ?>
9
10 </head>
11
12 <body id="nautilus-body" <?php print $onload_attributes; ?>>
13 <?php print $predoc; ?>
14
15 <div id="doc" class="<?php print variable_get("nautilustheme_maintype", 'yui-t4'); ?>">
16 <!-- possible values: t1, t2, t3, t4, t5, t6, t7 -->
17 <?php if(NAUTILUS_DEBUG): ?>
18 <!--
19 Template Sidebar Sidebar width Primary width
20 "yui-t1" left 160px 570px
21 "yui-t2" left 180px 550px
22 "yui-t3" left 300px 430px
23 "yui-t4" right 180px 550px
24 "yui-t5 " right 240px 490px
25 "yui-t6" right 300px 430px
26 "yui-t7" n/a n/a 750px -->
27 <?php endif; ?>
28
29 <div id="hd">
30 <!-- start: your content here -->
31 <?php if ($logo) : ?>
32 <a href="<?php print $index ?>" title="Index Page"><img src="<?php print($logo) ?>" alt="Logo" /></a>
33 <?php endif; ?>
34 <?php if ($site_name) : ?>
35 <div id="site-name-slogan">
36 <h1 id="site-name"><a href="<?php print $index ?>" title="Index Page"><?php print($site_name) ?></a></h1>
37 <?php if ($site_slogan) : ?>
38 <p id="site-slogan"><?php print($site_slogan) ?></p>
39 <?php endif;?>
40 </div>
41 <?php endif;?>
42
43 <?php if ($mission != ""): ?>
44 <div id="mission"><?php print $mission ?></div>
45 <?php endif; ?>
46 <?php if ($search_box != ""): ?>
47 <div id="search-box"><span>Search</span><?php print $search_box; ?></div>
48 <?php endif; ?>
49
50 <!-- end: your content here -->
51 </div>
52
53 <div id="bd">
54 <!-- start: primary column from outer template -->
55 <div id="yui-main">
56 <div class="yui-b">
57 <div id = "breadcrumb" class="yui-u">
58 <?php print $breadcrumb; ?>
59 </div>
60
61 <?php if($page == 0) { print '<h2 class = "title">' . $title . '</h2>'; } ?>
62
63 <!-- start: stack grids here -->
64 <div class="yui-u">
65 <?php print $primary_column; ?>
66 </div>
67 <!-- end: stack grids here -->
68
69 </div>
70 </div>
71 <div class="yui-b">
72 <?php print $secondary_column; ?>
73 </div>
74 <!-- end: primary column from outer template -->
75 </div>
76 <div id="ft">
77 <!-- start: your content here -->
78 <?php print $footer_message; ?>
79 <!-- end: your content here -->
80 </div>
81 </div>
82 <?php print $postdoc; ?>
83 <?php print $closure; ?>
84 </body>
85 </html>
86

  ViewVC Help
Powered by ViewVC 1.1.2