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

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

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


Revision 1.15 - (show annotations) (download) (as text)
Mon Apr 28 01:22:19 2008 UTC (18 months, 4 weeks ago) by m3avrck
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-5--1-1, DRUPAL-5--1-0, HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1
Changes since 1.14: +6 -3 lines
File MIME type: text/x-php
new IE6 stylesheet and other misc fixes
1 <?php // $Id: page.tpl.php,v 1.14 2008/02/25 16:07:19 m3avrck Exp $ ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language ?>" lang="<?php print $language ?>">
6 <head>
7 <title><?php print $head_title ?><?php if ($site_slogan != '' && !$is_front) print ' &ndash; '. $site_slogan; ?></title>
8 <meta http-equiv="content-language" content="<?php print $language ?>" />
9 <?php print $meta; ?>
10 <?php print $head; ?>
11 <?php print $styles; ?>
12 <!--[if lte IE 7]>
13 <link rel="stylesheet" href="<?php print $path; ?>blueprint/blueprint/ie.css" type="text/css" media="screen, projection">
14 <link href="<?php print $path; ?>css/ie.css" rel="stylesheet" type="text/css" media="screen, projection" />
15 <![endif]-->
16 <!--[if lte IE 6]>
17 <link href="<?php print $path; ?>css/ie6.css" rel="stylesheet" type="text/css" media="screen, projection" />
18 <![endif]-->
19 </head>
20
21 <body class="<?php print $body_class; ?>">
22
23 <div class="container">
24 <h1 id="logo">
25 <a title="<?php print $site_name; ?><?php if ($site_slogan != '') print ' &ndash; '. $site_slogan; ?>" href="<?php print url(); ?>"><?php print $site_name; ?><?php if ($site_slogan != '') print ' &ndash; '. $site_slogan; ?></a>
26 </h1>
27
28 <?php print $left; ?>
29
30 <div class="<?php print $center; ?>">
31 <?php
32 if ($breadcrumb != '') {
33 print $breadcrumb;
34 }
35
36 if ($tabs != '') {
37 print '<div class="tabs">'. $tabs .'</div>';
38 }
39
40 if ($messages != '') {
41 print '<div id="messages">'. $messages .'</div>';
42 }
43
44 if ($title != '') {
45 print '<h2>'. $title .'</h2>';
46 }
47
48 print $help; // Drupal already wraps this one in a class
49
50 print $content;
51 print $feed_icons;
52 ?>
53
54 <?php if ($footer_message != ''): ?>
55 <div id="footer"><?php print $footer_message; ?></div>
56 <?php endif; ?>
57 </div>
58
59 <?php print $right; ?>
60
61 <?php print $scripts ?>
62 <?php print $closure; ?>
63
64 </div>
65
66 </body>
67 </html>

  ViewVC Help
Powered by ViewVC 1.1.2