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

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

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


Revision 1.3 - (show annotations) (download) (as text)
Sun Dec 31 09:55:54 2006 UTC (2 years, 10 months ago) by gabriev
Branch: MAIN
CVS Tags: DRUPAL-5--1-1, HEAD
Changes since 1.2: +1 -1 lines
File MIME type: text/x-php
search box layout fix
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language ?>" lang="<?php print $language ?>">
4 <head>
5 <title><?php print $head_title ?></title>
6 <?php print $head ?>
7 <?php print $styles ?>
8 <?php print $scripts ?>
9 </head>
10
11 <body>
12
13 <div id="container">
14 <div class="clear-block">
15 <div id="header">
16 <?php if ($search_box): print $search_box; endif; ?>
17
18 <?php if ($logo) { ?><div class="logo"><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a></div><?php } ?>
19 <?php if ($site_name) { ?><h1 class="site-name"><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
20 <?php if ($site_slogan) { ?><div class="site-slogan"><?php print $site_slogan ?></div><?php } ?>
21 </div>
22
23 <ul id="nav">
24 <?php if (isset($primary_links)) : ?>
25 <?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
26 <?php endif; ?>
27 <?php if (isset($secondary_links)) : ?>
28 <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
29 <?php endif; ?>
30
31 </ul>
32 </div>
33
34 <div><?php print $header ?></div>
35
36 <div id="sidebar">
37 <?php print $sidebar_left ?>
38 <?php print $sidebar_right ?>
39 <div id="sidebar_bottom">&nbsp;</div>
40 </div>
41
42 <div id="content">
43 <?php if ($mission): print '<div id="mission">'. $mission .'</div>'; endif; ?>
44
45 <?php if ($breadcrumb): print $breadcrumb; endif; ?>
46
47
48 <?php if ($title): print '<h1 class="title">'. $title .'</h1>'; endif; ?>
49
50
51 <?php if ($tabs): print '<div class="tabs">'. $tabs .'</div>'; endif; ?>
52
53 <?php if (isset($tabs2)): print $tabs2; endif; ?>
54
55 <?php if ($help): print $help; endif; ?>
56 <?php if ($messages): print $messages; endif; ?>
57 <?php print $content ?>
58 <span class="clear"></span>
59
60 </div>
61
62 </div>
63
64 <div class="clear-block">
65
66 <div id="footer">
67 <?php if ($footer_message): print '<p>'. $footer_message .'</p>'; endif; ?>
68 <p>&lt; Design by <a href="http://spellbook.infinitiv.it/">Gabriev</a> | Powered by <a href="http://www.drupal.org">Drupal</a> &gt;</p>
69 </div>
70 <?php print $closure ?>
71
72 </div>
73
74 </body>
75 </html>

  ViewVC Help
Powered by ViewVC 1.1.2