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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Fri Jul 11 22:10:10 2008 UTC (16 months, 2 weeks ago) by couzinhub
Branch: MAIN
CVS Tags: DRUPAL-5--1-1, HEAD
Branch point for: DRUPAL-5, DRUPAL-7--1, DRUPAL-6--1
File MIME type: text/x-php
Initial release of Moleskine
1 <?php
2 // $Id$
3 ?>
4
5 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
6 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
7
8 <head>
9 <title><?php print $head_title; ?></title>
10 <?php print $head; ?>
11 <?php print $styles; ?>
12 <?php print $scripts; ?>
13
14 <!--[if lte IE 6]>
15 <style type="text/css" media="all">@import "<?php print base_path() . path_to_theme() ?>/ie6.css";</style>
16 <![endif]-->
17 <!--[if IE 7]>
18 <style type="text/css" media="all">@import "<?php print base_path() . path_to_theme() ?>/ie7.css";</style>
19 <![endif]-->
20
21 </head>
22
23 <?php /* different ids allow for separate theming of the home page */ ?>
24 <body>
25 <div id="page">
26 <div id="header">
27
28 <?php if ($primary_links): ?>
29 <?php print theme('menu_links', $primary_links); ?>
30 <?php endif; ?>
31
32
33 </div> <!-- /header -->
34
35 <div id="main" class="column">
36
37 <div id="logo-title"><div id="logo-title-inner">
38
39 <?php if ($logo): ?>
40 <a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>">
41 <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo" />
42 </a>
43 <?php endif; ?>
44
45 <div id="name-and-slogan">
46 <?php if ($site_name): ?>
47 <h1 id='site-name'>
48 <a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>">
49 <?php print $site_name; ?>
50 </a>
51 </h1>
52 <?php endif; ?>
53
54 <?php if ($site_slogan): ?>
55 <div id='site-slogan'>
56 <?php print $site_slogan; ?>
57 </div>
58 <?php endif; ?>
59 </div> <!-- /name-and-slogan -->
60 </div></div> <!-- /logo-title / logo-title-inner -->
61
62 <div id="content">
63
64 <?php if ($breadcrumb): ?><?php print $breadcrumb; ?><?php endif; ?>
65 <?php if ($mission): ?><div id="mission"><?php print $mission; ?></div><?php endif; ?>
66 <?php if ($content_top):?><div id="content-top"><?php print $content_top; ?></div><?php endif; ?>
67 <?php print $feed_icons; ?>
68 <?php if ($title): ?><h1 class="title"><?php print $title; ?></h1><?php endif; ?>
69 <?php if ($tabs): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
70 <?php print $help; ?>
71 <?php print $messages; ?>
72 <?php print $content; ?>
73 <?php if ($content_bottom): ?><div id="content-bottom"><?php print $content_bottom; ?></div><?php endif; ?>
74 </div></div> <!-- /content /main -->
75
76 <div id="sidebar-right" class="column sidebar">
77 <div id="side-content">
78
79 <?php if ($secondary_links): ?>
80 <div id="secondary" class="block">
81 <h2>Secondary Links</h2>
82 <?php print theme('menu_links', $secondary_links); ?>
83 </div>
84 <?php endif; ?>
85
86 <?php print $sidebar_right; ?>
87 </div> <!-- /side-content -->
88 </div> <!-- /sidebar-right -->
89
90
91 <div id="footer-wrapper">
92 <div id="footer">
93 <?php print $footer_message; ?>
94 </div> <!-- /footer -->
95 </div> <!-- /footer-wrapper -->
96
97 <?php print $closure; ?>
98
99 </div> <!-- /page -->
100
101 </body>
102 </html>

  ViewVC Help
Powered by ViewVC 1.1.2