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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Sun Mar 18 05:45:28 2007 UTC (2 years, 8 months ago) by vadbarsdrupalorg
Branch: MAIN
CVS Tags: DRUPAL-5--1-1, HEAD
File MIME type: text/x-php
first release
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 ?>" lang="<?php print $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 <?php if (isset($primary_links)) : ?>
18 <?php print theme('links', $primary_links, array('class' => 'nav')) ?>
19 <?php endif; ?>
20 </div>
21
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 </div>
36
37 <div id="sidebar-right">
38 <ul>
39 <li>
40 <?php if ($search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
41 </li>
42 <?php if ($sidebar_right): ?>
43 <?php print $sidebar_right ?>
44 <?php endif; ?>
45 </ul>
46 </div>
47
48 <hr class="clear" />
49 <div id="footer">
50 <?php print $footer_message ?>
51 </div>
52 </div>
53 <div id="credits">
54 <div class="alignright"><div class="feed"><?php print $feed_icons ?></div></div>
55 <div class="copy">
56 <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>
57 </div>
58 </div>
59
60 <?php print $closure ?>
61 </body>
62 </html>

  ViewVC Help
Powered by ViewVC 1.1.2