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

Contents of /contributions/themes/mt/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 Nov 2 20:35:16 2005 UTC (4 years ago) by eaton
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
Initial commit of a Movable Type 3.2 compatability theme. Reproduces (with some hitches) the default MT 3.2 layout, allowing drupal sites to use CSS based Movable Type skins.
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 ?>" xml:lang="<?php print $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 <?php print $styles ?>
9 </head>
10 <body class="layout-two-column-right" <?php print theme("onload_attribute"); ?>>
11 <div id="container">
12 <div id="container-inner" class="pkg">
13
14 <div id="banner">
15 <div id="banner-inner" class="pkg">
16 <h1 id="banner-header"><a href="<?php print url() ?>" accesskey="1"><?php print($site_name) ?></a></h1>
17 <h2 id="banner-description"><?php print($site_slogan) ?></h2>
18 </div>
19 </div>
20
21
22 <div id="pagebody">
23 <div id="pagebody-inner" class="pkg">
24 <div id="alpha">
25 <div id="alpha-inner" class="pkg">
26 <?php if ($tabs != ""): ?>
27 <?php print $tabs ?>
28 <?php endif; ?>
29 <?php if ($help != ""): ?>
30 <p id="help"><?php print $help ?></p>
31 <?php endif; ?>
32 <?php if ($messages != ""): ?>
33 <div id="message"><?php print $messages ?></div>
34 <?php endif; ?>
35 <?php print($content) ?>
36 </div>
37 </div>
38
39
40 <div id="beta">
41 <div id="beta-inner" class="pkg">
42 <?php print $sidebar_left ?>
43 <?php print $sidebar_right ?>
44 </div>
45 </div>
46
47 </div>
48 </div>
49
50
51 </div>
52 </div>
53 </body>
54 </html>

  ViewVC Help
Powered by ViewVC 1.1.2