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

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

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


Revision 1.2 - (show annotations) (download) (as text)
Sat Feb 23 05:17:12 2008 UTC (21 months ago) by chrisada
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, HEAD
Changes since 1.1: +3 -3 lines
File MIME type: text/x-php
Porting to 6.x
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.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 <style type="text/css" media="print">@import "<?php print base_path() . path_to_theme() ?>/print.css";</style>
9 </head>
10 <body>
11 <div id="page">
12 <div id="header">
13 <div id="headerimg">
14 <h1><a href="<?php print check_url($base_path); ?>"><?php print check_plain($site_name); ?></a></h1>
15 <div class="description"><?php print check_plain($site_slogan); ?></div>
16 </div>
17
18 <?php if (isset($primary_links)) : ?>
19 <?php print theme('links', $primary_links, array('class' => 'nav')) ?>
20 <?php endif; ?>
21 </div>
22 <div id="content">
23 <?php if ($breadcrumb): print $breadcrumb; endif; ?>
24 <?php if ($mission): print '<div id="mission">'. $mission .'</div>'; endif; ?>
25 <?php if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'. $tabs .'</div>'; endif; ?>
26 <?php if (isset($tabs2)): print $tabs2; endif; ?>
27 <?php if ($help): print $help; endif; ?>
28 <?php if ($messages): print $messages; endif; ?>
29 <?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
30 <?php print $content ?>
31
32 <div class="navigation">
33 <span class="previous-entries"></span> <span class="next-entries"></span>
34 </div>
35
36 </div><!--/content -->
37
38 <div id="sidebar-right">
39 <ul>
40 <li>
41 <?php if ($search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
42 </li>
43 <?php if ($right): ?>
44 <?php print $right ?>
45 <?php endif; ?>
46
47 </ul>
48
49 </div><!--/sidebar -->
50
51 <hr class="clear" />
52 <!--/header -->
53 </div>
54 <div id="credits">
55 <div class="alignleft"><a href="http://www.ndesign-studio.com/resources/wp-themes">Theme</a> &amp; <a href="http://www.ndesign-studio.com/stock-icons/">Icons</a> by <a href="http://www.ndesign-studio.com">N.Design Studio</a><br /><?php print $footer_message ?></div>
56 <div class="alignright"><?php print $feed_icons ?></div>
57
58 </div>
59
60 <?php print $closure ?>
61 </body>
62 </html>

  ViewVC Help
Powered by ViewVC 1.1.2