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

Contents of /contributions/themes/acquia_marina/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)
Wed Oct 1 03:26:19 2008 UTC (13 months, 4 weeks ago) by jwolf
Branch: MAIN
CVS Tags: DRUPAL-6--1-8, DRUPAL-6--1-9, DRUPAL-6--1-4, DRUPAL-6--1-5, DRUPAL-6--1-6, DRUPAL-6--1-7, DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-6--1-2, DRUPAL-6--1-3, HEAD
Branch point for: DRUPAL-6--1, DRUPAL-6--2
File MIME type: text/x-php
initial commit of the Acquia Marina theme
1 <?php
2 // $Id$
3 ?>
4
5 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
6 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language; ?>" xml:lang="<?php print $language->language; ?>">
7
8 <head>
9 <title><?php print $head_title; ?></title>
10 <?php print $head; ?>
11 <?php print $styles; ?>
12 <!--[if IE 7]>
13 <link rel="stylesheet" href="<?php print $base_path . $directory; ?>/ie7-fixes.css" type="text/css">
14 <![endif]-->
15 <!--[if lte IE 6]>
16 <link rel="stylesheet" href="<?php print $base_path . $directory; ?>/ie6-fixes.css" type="text/css">
17 <![endif]-->
18 <?php print $scripts; ?>
19 </head>
20
21 <body class="<?php print $body_classes; ?>">
22 <div id="page" class="clearfix">
23 <div id="header-wrapper" class="clearfix">
24 <div id="header-first">
25 <?php if ($logo): ?>
26 <div id="logo">
27 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a>
28 </div>
29 <?php endif; ?>
30 <?php if ($site_name): ?>
31 <h1><a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a></h1>
32 <?php endif; ?>
33 <?php if ($site_slogan): ?>
34 <span id="slogan"><?php print $site_slogan; ?></span>
35 <?php endif; ?>
36 </div><!-- /header-first -->
37 </div><!-- /header-wrapper -->
38 <div id="main-wrapper" class="clearfix">
39 <div id="content-wrapper">
40 <div id="content">
41 <?php if ($tabs): ?>
42 <div id="content-tabs" class="clear">
43 <?php print $tabs; ?>
44 </div>
45 <?php endif; ?>
46 <?php if ($content || $title): ?>
47 <div id="content-inner" class="clear">
48 <?php if ($title): ?>
49 <h1 class="title"><?php print $title; ?></h1>
50 <?php endif; ?>
51 <?php if ($content): ?>
52 <?php print $content; ?>
53 <?php endif; ?>
54 </div>
55 <?php endif; ?>
56 </div><!-- /content -->
57 </div><!-- /content-wrapper -->
58 </div><!-- /main-wrapper -->
59 </div><!-- /page -->
60 </body>
61 </html>

  ViewVC Help
Powered by ViewVC 1.1.2