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

Contents of /contributions/themes/aurora/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 27 18:47:14 2008 UTC (11 months ago) by arancaytar
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, HEAD
Changes since 1.2: +10 -10 lines
File MIME type: text/x-php
#273313 by Arancaytar: D6 compatibility upgrade for Aurora
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" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>">
3
4 <head>
5 <title><?php print $head_title ?></title>
6 <?php print $head ?>
7 <?php print $styles ?>
8 <?php print $scripts ?>
9 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
10 </head>
11
12 <body id="<?php if ($is_front) { print 'home'; } else { print 'second'; } ?>">
13 <div id="page" class="<?php if ($left || $right) { print "one-sidebar"; } if ($right && $left) { print " two-sidebars"; }?>">
14
15 <div id="header">
16
17 <div id="logo-title">
18
19 <?php if ($logo): ?>
20 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
21 <img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" id="logo" />
22 </a>
23 <?php endif; ?>
24
25 <?php if ($site_name): ?>
26 <h1 id='site-name'>
27 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
28 <?php print $site_name ?>
29 </a>
30 </h1>
31 <?php endif; ?>
32
33 <?php if ($site_slogan): ?>
34 <div id='site-slogan'>
35 <?php print $site_slogan ?>
36 </div>
37 <?php endif; ?>
38 </div>
39
40 <div class="menu <?php if ($primary_links) { print "withprimary"; } if ($secondary_links) { print " withsecondary"; } ?> ">
41 <?php if ($secondary_links): ?>
42 <div id="secondary" class="clear-block">
43 <?php print aurora_tabs($secondary_links, array('class' => 'secondary')) ?>
44 </div>
45 <?php endif; ?>
46
47
48 </div>
49
50 <?php if ($header): ?>
51 <div id="header-region">
52 <?php print $header ?>
53 </div>
54 <?php endif; ?>
55 </div>
56
57 <?php if ($primary_links): ?>
58 <div id="primary" class="clear-block">
59 <?php print aurora_tabs($primary_links, array('class' => 'primary')) ?>
60 </div>
61 <?php endif; ?>
62
63
64
65
66 <div id="container" class="<?php if ($left) { print "withleft"; } if ($right) { print " withright"; }?> clear-block">
67 <div id="main-wrapper">
68 <div id="main" class="clear-block">
69 <?php print $breadcrumb ?>
70 <?php if ($mission): ?><div id="mission"><?php print $mission ?></div><?php endif; ?>
71 <?php if ($content_top):?><div id="content-top"><?php print $content_top ?></div><?php endif; ?>
72 <?php if ($title): ?><h1 class="title"><?php print $title ?></h1><?php endif; ?>
73 <?php if ($tabs): ?><div class="tabs"><?php print $tabs ?></div><?php endif; ?>
74 <?php print $help ?>
75 <?php print $messages ?>
76 <?php print $content ?>
77 <?php if ($content_bottom): ?><div id="content-bottom"><?php print $content_bottom ?></div><?php endif; ?>
78 </div>
79 </div>
80
81 <?php if ($left): ?>
82 <div id="sidebar-left" class="sidebar">
83 <?php print $search_box ?>
84 <?php print $left ?>
85 </div>
86 <?php endif; ?>
87
88 <?php if ($right): ?>
89 <div id="sidebar-right" class="sidebar">
90 <?php print $right ?>
91 </div>
92 <?php endif; ?>
93
94 </div>
95
96 <div id="footer">
97 <?php print $footer ?>
98 <?php print $footer_message ?>
99 </div>
100 <div class="copy">
101 <p>Powered by <a href="http://www.drupal.org/">Drupal</a> - <!-- Please do not remove this command line --> Design by <a href="http://www.artinet.ru/">artinet</a></p>
102 </div>
103
104 <?php print $closure ?>
105
106 </div>
107 </body>
108 </html>

  ViewVC Help
Powered by ViewVC 1.1.2