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

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

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


Revision 1.3 - (show annotations) (download) (as text)
Sat Dec 20 19:10:18 2008 UTC (11 months, 1 week ago) by paddy
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +7 -6 lines
File MIME type: text/x-php
This updated fixes
:. Yea - XHTML 1.0 Strict but CSS Does Not (http://drupal.org/node/343844)
    Replaced opacity with background colours
:. pager list isn't shown correctly (http://drupal.org/node/237230)
    Updated template code base from beta to production compatible..
:. Screenshot incorrect size (http://drupal.org/node/257696)
    Made sure that the screen shot was 150x90px
:. Undefined function: _forum_format() (http://drupal.org/node/309118)
    replaced function completely. Function was D5 compatible not D6..
 :. Fatal error: Call to undefined function (http://drupal.org/node/269445)
    replaced function completely. Function was D5 compatible not D6..
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" lang="<?php print $language->language; ?>">
3 <head profile="http://gmpg.org/xfn/11">
4 <title><?php print $head_title ?></title>
5 <?php print $head ?>
6 <?php print $styles ?>
7 <?php print $scripts ?>
8 </head>
9 <body class="<?php print $body_classes; ?>">
10 <div id="wrapper">
11 <div id="header">
12 <?php if ($search_box) { print '<div class="search">' . $search_box .'</div>'; } ?>
13 <?php if (isset($primary_links)) {
14 print theme('links', $primary_links, array('class' => 'navmenu primary-links'));
15 } ?>
16 <?php if (isset($secondary_links)) {
17 print theme('links', $secondary_links, array('class' => 'navmenu secondary-links'));
18 } ?>
19 <h1>
20 <a href="<?php print base_path() ?>" title="<?php print $site_slogan ? $site_slogan : $site_name ?>"><?php print $site_slogan ? $site_slogan : $site_name ?></a>
21 </h1>
22 </div>
23 <div id="content">
24 <div class="post-main">
25 <?php if ($breadcrumb) { print $breadcrumb; } ?>
26 <?php if ($mission) { print '<div id="mission">'. $mission .'</div>'; } ?>
27 <?php if ($tabs) { print '<div id="tabs-wrapper" class="clear-block">'; } ?>
28 <?php if ($title) { print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; } ?>
29 <?php if ($tabs) { print $tabs .'</div>'; } ?>
30 <?php if (isset($tabs2)) { print $tabs2; } ?>
31 <?php if ($help) { print $help; } ?>
32 <?php if ($show_messages && $messages) { print $messages; } ?>
33 </div>
34 <?php if ((strlen($content) > strlen('<div class="post-meta">')) && (substr($content, 0, strlen('<div class="post-meta">')) == '<div class="post-meta">')) {
35 print $content;
36 } else {
37 print '<div class="post-main">' . $content . '</div>';
38 } ?>
39 <div class="clear-block clear"></div>
40 </div>
41 <div id="sidebar">
42 <div id="sidebar1">
43 <div class="sb1">
44 <?php if ($left) { ?>
45 <div id="sidebar-left" class="sidebar">
46 <?php print $left ?>
47 </div>
48 <?php } ?>
49 </div>
50 </div>
51 <div id="sidebar2">
52 <div class="sb2">
53 <?php if ($right) { ?>
54 <div id="sidebar-right" class="sidebar">
55 <?php print $right ?>
56 </div>
57 <?php } ?>
58 </div>
59 </div>
60 </div>
61 <div id="bottom">
62 <div class="bottom">
63 <?php if ($footer_message) { print $footer_message; } ?>
64 <?php if ($footer) { print $footer; } ?>
65 <?php if ($closure) { print $closure; } ?>
66 </div>
67 </div>
68 <div id="footer">
69 <p>
70 &copy; 2007
71 <a href="<?php print base_path() ?>" class="<?php print $site_name ?>" title="<?php print $site_name ?>"><?php print $site_name ?></a>&nbsp;|&nbsp;
72 <a href="http://www.ilemoned.com/wordpress/wptheme-dark" title="WordPress theme: Dark">the "dark" theme</a><br/>
73 <a href="http://validator.w3.org/check?uri=<?php print theme('hostname'); ?>" class="w3c" title="<?php print t('Valid XHTML 1.0 Strict'); ?>">XHTML</a>
74 <a href="http://jigsaw.w3.org/css-validator/validator?uri=<?php print theme('hostname') . path_to_theme(); ?>/style.css" class="w3c" title="<?php print t('Valid CSS 2.0'); ?>">CSS</a>
75 <a href="http://www.bartelme.at" class="credit" title="<?php print t('Designed by Wolfgang Bartelme'); ?>">Bartelme Design</a>
76 <a href="http://drupal.org" class="credit" title="<?php print t('Drupal'); ?>">Drupal</a>
77 </p>
78 </div>
79 </div>
80 </body>
81 </html>

  ViewVC Help
Powered by ViewVC 1.1.2