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

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

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


Revision 1.3 - (show annotations) (download) (as text)
Sun May 21 09:41:36 2006 UTC (3 years, 6 months ago) by ber
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +9 -2 lines
File MIME type: text/x-php
Merging 4.7 improvements in HEAD
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 <meta http-equiv="Content-Style-Type" content="text/css" />
7 <?php print $head ?>
8 <?php print theme('stylesheet_import', base_path() . path_to_theme() . '/style.css'); ?>
9 </head>
10 <body <?php print theme("onload_attribute"); ?>>
11 <div id="container">
12 <div id="top">
13 <?php if ($site_name) : ?>
14 <h1 id="site-name"><a href="<?php print base_path() ?>" title="Index Page"><?php print($site_name) ?></a></h1>
15 <?php endif;?>
16 <?php if ($site_slogan) : ?>
17 <span id="site-slogan"><?php print($site_slogan) ?></span>
18 <?php endif;?>
19
20 <?php if ($header) : ?>
21 <div id="header">
22 <?php print $header ?>
23 </div>
24 <?php endif;?>
25
26 <div id="navigation">
27 <?php if (count($primary_links)) : ?>
28 <ul id="primary">
29 <?php foreach ($primary_links as $link): ?>
30 <li><?php print $link?></li>
31 <?php endforeach; ?>
32 </ul>
33 <?php endif; ?>
34 <?php if (count($secondary_links)) : ?>
35 <br class="clear" />
36 <ul id="secondary">
37 <?php foreach ($secondary_links as $link): ?>
38 <li><?php print $link?></li>
39 <?php endforeach; ?>
40 </ul>
41 <?php endif; ?>
42 </div>
43 </div>
44
45 <br class="clear" />
46
47 <div id="leftnav">
48 <?php print $sidebar_left ?>
49 </div>
50
51 <!--Static blocks-->
52 <div id="rightnav">
53 <?php print $sidebar_right ?>
54 </div>
55 <div id="content">
56 <?php print $breadcrumb ?>
57 <?php if ($title != ""): ?>
58 <h2 class="content-title"><?php print $title ?></h2>
59 <?php endif; ?>
60 <?php if ($tabs != ""): ?>
61 <?php print $tabs ?>
62 <?php endif; ?>
63
64 <?php if ($mission != ""): ?>
65 <div id="mission"><?php print $mission ?></div>
66 <?php endif; ?>
67
68 <?php if ($help != ""): ?>
69 <p id="help"><?php print $help ?></p>
70 <?php endif; ?>
71
72 <?php if ($messages != ""): ?>
73 <div id="message"><?php print $messages ?></div>
74 <?php endif; ?>
75
76 <!-- start main content -->
77 <?php print($content) ?>
78 <!-- end main content -->
79 </div>
80 <div id="footer">
81 <?php print $footer_message;?>
82 </div>
83 </div>
84 <?php print $closure;?>
85 </body>
86 </html>
87

  ViewVC Help
Powered by ViewVC 1.1.2