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

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

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


Revision 1.4 - (show annotations) (download) (as text)
Wed Dec 12 03:47:54 2007 UTC (23 months, 2 weeks ago) by richard
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, HEAD
Branch point for: DRUPAL-6--1, DRUPAL-6--4
Changes since 1.3: +5 -6 lines
File MIME type: text/x-php
first pass at making the Mobile theme Drupal 6 compatible
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->language ?>" xml:lang="<?php print $language->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 </head>
9
10 <body <?php print theme("onload_attribute"); ?>>
11
12 <a href="<?php print url($_GET['q'], array('query' => NULL, 'fragment' => 'nav', 'absolute' => TRUE)); ?>"><?php print t('skip to navigation');?></a>
13 <?php if ($title != ""): ?>
14 <h2 class="content-title"><?php print $title ?></h2>
15 <?php endif; ?>
16 <?php if ($help != ""): ?>
17 <p id="help"><?php print $help ?></p>
18 <?php endif; ?>
19 <?php if ($messages != ""): ?>
20 <div id="message"><?php print $messages ?></div>
21 <?php endif; ?>
22 <?php print $content ?>
23 <?php if ($tabs != ""): ?>
24 <?php print $tabs ?>
25 <?php endif; ?>
26 <a name="nav"></a>
27 <?php print $left . $right; ?>
28 <?php if ($footer_message) : ?>
29 <?php print $footer;?>
30 <?php endif; ?>
31 <?php print $closure;?>
32 </body>
33 </html>
34

  ViewVC Help
Powered by ViewVC 1.1.2