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

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

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


Revision 1.2 - (show annotations) (download) (as text)
Tue Oct 13 06:51:17 2009 UTC (6 weeks ago) by doncoryon
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +170 -85 lines
File MIME type: text/x-php
Updated footer links
1 <?php
2
3 // $Id: page.tpl.php,v 1.1 2008/08/12 20:32:34 doncoryon Exp $
4
5 ?>
6
7 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
8
9 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
10
11
12
13 <head>
14
15 <title><?php print $head_title ?></title>
16
17 <?php print $head ?>
18
19 <?php print $styles ?>
20
21 <?php print $scripts ?>
22
23 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
24
25 </head>
26
27
28
29 <body>
30
31
32
33 <!-- wrap starts here -->
34
35 <div id="wrap-out"><div id="wrap">
36
37
38
39 <!--header -->
40
41 <div id="header">
42
43 <?php if ($site_name) { ?><h1 id="logo-text"><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
44
45 <p id="intro">
46
47 <?php if ($site_slogan) { ?><?php print $site_slogan ?><?php } ?>
48
49 </p>
50
51
52
53 <div id="nav">
54
55 <?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?><?php } ?>
56
57 </div>
58
59
60
61 <!--header ends-->
62
63 </div>
64
65
66
67 <!-- content-wrap starts -->
68
69 <div id="content-wrap">
70
71
72
73 <div id="main">
74
75 <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
76
77 <?php print $breadcrumb ?>
78
79 <?php if ($title) { ?><h1 class="node-title"><?php print $title ?></h1><?php } ?>
80
81 <div class="tabs"><?php print $tabs ?></div>
82
83 <?php if ($show_messages) { print $messages; } ?>
84
85 <?php print $help ?>
86
87 <?php print $content; ?>
88
89 <?php print $feed_icons; ?>
90
91
92
93 </div>
94
95 <!-- main ends -->
96
97
98
99 <!-- sidebar starts -->
100
101 <div id="sidebar">
102
103 <?php if ($right) { ?> <?php print $right ?> <?php } ?>
104
105 </div>
106
107 <!-- sidebar ends -->
108
109
110
111
112
113 </div>
114
115 <!-- content-wrap ends-->
116
117
118
119 <!-- footer starts here -->
120
121 <div id="footer-wrap"><div id="footer-content">
122
123 <div class="col float-left space-sep">
124
125 <?php if ($footer1) { ?> <?php print $footer1 ?> <?php } ?>
126
127 </div>
128
129 <div class="col float-left">
130
131 <?php if ($footer2) { ?> <?php print $footer2 ?> <?php } ?>
132
133 </div>
134
135 <div class="col2 float-right">
136
137 <?php if ($footer3) { ?> <?php print $footer3 ?> <?php } ?>
138
139 </div>
140
141 </div></div>
142
143 <div id="footer-message">
144
145 <?php if ($footer_message) { ?> <?php print $footer_message ?> <?php } ?>
146
147 </div>
148
149 <div id="footer">
150
151 Design by <a href="http://www.styleshout.com">styleshout</a> | Ported by <a href="http://goodwinsolutions">Goodwin Solutions</a>
152
153 </div>
154
155 <div class="clearer"></div>
156
157 <!-- footer ends here -->
158
159
160
161 <!-- wrap ends here -->
162
163 </div></div>
164
165
166
167 </body>
168
169 </html>
170

  ViewVC Help
Powered by ViewVC 1.1.2