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

Contents of /contributions/themes/andreas08/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 Jun 11 01:42:26 2006 UTC (3 years, 5 months ago) by taniwha
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -1 lines
File MIME type: text/x-php
added $base_path  to css file path
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
3 <head <?php echo $onload_attributes;?>>
4 <title><?php echo $head_title; ?></title>
5 <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
6 <?php
7 echo $head;
8 echo $styles;
9 ?>
10 <link rel="stylesheet" href="/<?php echo $base_path . $directory; ?>/andreas08.css" type="text/css" media="screen,projection" />
11 </head>
12
13 <body <?php echo $onload_attributes; ?>>
14 <div id="container" >
15
16 <div id="header">
17 <h1><?php echo $site_name; ?></h1>
18 <?php if ($site_slogan): ?>
19 <h2><?php echo $site_slogan; ?></h2>
20 <?php echo $header; ?>
21 <?php endif;?>
22 </div>
23
24 <div id="navigation">
25 <?php if (count($primary_links)) {
26 echo '<ul>';
27 foreach($primary_links as $l) {
28 echo '<li>' . $l . '</li>';
29 }
30 echo '</ul>';
31 }
32 ?>
33 </div>
34 <div id="andreas07content">
35 <?php if ($breadcrumb) echo $breadcrumb; ?>
36 <h2><?php echo $title; ?></h2>
37 <?php echo $tabs;?>
38 <?php echo $content; ?>
39 <?php if ($breadcrumb) echo $breadcrumb; ?>
40 </div>
41 <div id="andreas07subcontent">
42 <?php if ($messages): ?> <div class="small box"><strong>Note: </strong> <?php echo $messages; ?> </div> <?php endif; ?>
43 <?php if ($help): ?> <div class="small box"><?php echo $help; ?> </div> <?php endif; ?>
44 <?php
45 echo $sidebar_left;
46 echo $sidebar_right;
47 ?>
48 </div>
49 <div id="footer">
50 <p><?php echo $footer_message; ?> | Design by <a href="http://andreasviklund.com">Andreas Viklund</a></p>
51 <?php echo $footer; ?>
52 </div>
53
54 </div>
55 </body>
56 <?php echo $closure; ?>
57 ???

  ViewVC Help
Powered by ViewVC 1.1.2