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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Thu Jun 26 16:36:45 2008 UTC (17 months ago) by krishikesh
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
Initial Release for Drupal 6
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" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>">
3
4 <head>
5
6 <title><?php print $head_title ?></title>
7 <?php print $head ?>
8 <?php print $styles ?>
9 <?php print $scripts ?>
10 <!--[if IE 6]>
11 <style type="text/css" media="all">@import "<?php print base_path() . path_to_theme() ?>/ie-fixes/ie6.css";</style>
12 <![endif]-->
13 <!--[if lt IE 7.]>
14 <script defer type="text/javascript" src="<?php print base_path() . path_to_theme() ?>/ie-fixes/pngfix.js"></script>
15 <![endif]-->
16
17 </head>
18 <body>
19
20 <!-- begin container -->
21 <div id="container">
22 <!-- begin header -->
23 <div id="header">
24
25 <!-- site logo -->
26 <?php if ($logo) : ?>
27 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
28 <img class="logo" src="<?php print $logo ?>" alt="<?php print t('Home') ?>" />
29 </a>
30 <?php endif; ?><!-- end site logo -->
31
32 <!-- site name -->
33 <?php if ($site_name) : ?>
34 <h1>
35 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
36 <?php print $site_name; ?>
37 </a>
38 </h1>
39 <?php endif; ?><!-- end site name -->
40
41 <!-- site slogan -->
42 <?php if ($site_slogan) : ?>
43 <h2>
44 <?php print $site_slogan; ?>
45 </h2>
46 <?php endif; ?><!-- end site slogan -->
47
48 </div><!-- end header -->
49
50 <!-- primary links -->
51 <div id="menu">
52 <?php if (isset($primary_links)) : ?>
53 <?php print theme('links', $primary_links) ?>
54 <?php endif; ?>
55 </div><!-- end primary links -->
56 <div id="topcontainer"></div></div>
57 <!-- content -->
58
59 <div id="containerbg">
60 <!-- begin mainContent -->
61 <div id="mainContent" style="width: <?php print colorart_get_mainContent_width( $sidebar_left, $sidebar_right) ?>px;">
62
63 <?php if ($mission): print '<div class="mission">'. $mission .'</div>'; endif; ?>
64 <?php if ($breadcrumb): print '<div class="breadcrumb">'. $breadcrumb . '</div>'; endif; ?>
65 <?php if ($content_top): ?>
66 <div id="contenttop"><?php print $content_top; ?> </div>
67 <?php endif; ?>
68 <?php if ($title) : print '<h1 class="pageTitle">' . $title . '</h1>'; endif; ?>
69 <?php if ($tabs) : print '<div class="tabs">' . $tabs . '</div>'; endif; ?>
70 <?php if ($help) : print '<div class="help">' . $help . '</div>'; endif; ?>
71 <?php if ($messages) : print '<div class="messages">' .$messages . '</div>'; endif; ?>
72
73 <?php print $content; ?>
74 <?php print $content_bottom; ?>
75 <?php print $feed_icons; ?>
76
77 </div><!-- end mainContent -->
78
79 <!-- begin sideBars -->
80
81 <div id="sideBars" style="width: <?php print colorart_get_sideBars_width( $sidebar_left, $sidebar_right) ?>px;">
82 <?php if ($header) : ?>
83 <div id="header">
84 <?php print $header; ?>
85 </div> <?php endif; ?><!-- end header -->
86
87 <!-- left sidebar -->
88 <?php if ($sidebar_left) : ?>
89 <div id="leftSidebar">
90 <?php print $sidebar_left; ?>
91 </div>
92 <?php endif; ?>
93
94 <!-- right sidebar -->
95 <?php if ($sidebar_right) : ?>
96 <div id="rightSidebar">
97 <?php print $sidebar_right; ?>
98 </div>
99 <?php endif; ?>
100
101 <div id="footer">
102 <?php print $footer; ?>
103 </div><!-- end footer -->
104 </div><!-- end sideBars -->
105 <!-- fix for backgroung -->
106 <div id="fixwidth"></div><!-- end fix -->
107 </div><!-- end container & bootom-container also -->
108 <?php print $closure ?>
109
110 <div id="containerend"></div> <div id="copyright">Copyright information comes here <a href="http://drupal.org/user/198692"> Rishikesh</a></div>
111 </body>
112 </html>

  ViewVC Help
Powered by ViewVC 1.1.2