/[drupal]/contributions/themes/andreas/maintenance-page.tpl.php
ViewVC logotype

Contents of /contributions/themes/andreas/maintenance-page.tpl.php

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


Revision 1.1 - (show annotations) (download) (as text)
Mon Mar 9 21:07:03 2009 UTC (8 months, 2 weeks ago) by nickbits
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-6--1-2, DRUPAL-6--1-0-ALPHA1, DRUPAL-6--1-0-BETA1, HEAD
File MIME type: text/x-php
Initial Release
1 <?php
2 // $Id: maintenance-page.tpl.php,v 1.1.4.2 2008/11/28 06:14:30 andregriffin Exp $
3 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>">
6 <head>
7 <title><?php print $head_title ?></title>
8 <?php print $head ?>
9 <?php print $styles ?>
10 <?php print $scripts ?>
11 <!--[if lte IE 7]><?php print phptemplate_get_ie_styles(); ?><![endif]--><!--If Less Than or Equal (lte) to IE 7-->
12 </head>
13 <body<?php print phptemplate_body_class($left, $right); ?>>
14
15 <!-- Layout -->
16 <div id="wrapper">
17 <div id="header">
18 <?php print $header; ?>
19
20 <?php if ($logo): ?>
21 <a href="<?php print check_url($front_page); ?>" title="<?php print check_plain($site_name); ?>">
22 <img src="<?php print check_url($logo); ?>" alt="<?php print check_plain($site_name); ?>" id="logo" />
23 </a>
24 <?php endif; ?>
25 <?php print '<h1><a href="'. check_url($front_page) .'" title="'. check_plain($site_name) .'">';
26 if ($site_name) {
27 print '<span id="sitename">'. check_plain($site_name) .'</span>';
28 }
29 if ($site_slogan) {
30 print '<span id="siteslogan">'. check_plain($site_slogan) .'</span>';
31 }
32 print '</a></h1>';
33 ?>
34
35 <div class="clear"></div>
36 </div> <!-- /#header -->
37
38 <div id="nav">
39 <?php if (isset($primary_links)) : ?>
40 <?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
41 <?php endif; ?>
42 <?php if (isset($secondary_links)) : ?>
43 <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
44 <?php endif; ?>
45 </div> <!-- /#nav -->
46
47 <div id="container">
48
49 <?php if ($left): ?>
50 <div id="sidebar-left" class="sidebar">
51 <?php print $left ?>
52 </div> <!-- /#sidebar-left -->
53 <?php endif; ?>
54
55 <div id="center">
56 <?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
57 <?php print $help; ?>
58 <?php print $messages; ?>
59 <?php print $content ?>
60 </div> <!-- /#center -->
61
62 <?php if ($right): ?>
63 <div id="sidebar-right" class="sidebar">
64 <?php print $right ?>
65 </div> <!-- /#sidebar-right -->
66 <?php endif; ?>
67
68 <div id="footer" class="clear">
69 <?php print $footer_message . $footer ?>
70 <?php print $feed_icons ?>
71 </div> <!-- /#footer -->
72
73 </div> <!-- /#container -->
74 <span class="clear"></span>
75 </div> <!-- /#wrapper -->
76 <!-- /layout -->
77
78 <?php print $closure ?>
79
80 </body>
81 </html>

  ViewVC Help
Powered by ViewVC 1.1.2