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

Contents of /contributions/themes/ad_agency/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 Dec 11 06:51:59 2007 UTC (23 months, 2 weeks ago) by themester
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +16 -16 lines
File MIME type: text/x-php
w3c validation
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" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
3
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 <?php /* different ids allow for separate theming of the home page */ ?>
12 <body class="<?php print $body_classes; ?>">
13 <div id="wrapper">
14 <!-- top info starts here -->
15 <div id="header">
16 <?php if ($logo): ?>
17 <a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>"> <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo" /> </a>
18 <?php endif; ?>
19 <div id="hright" class="menu <?php if ($primary_links) { print "withprimary"; } if ($secondary_links) { print " withsecondary"; } ?> ">
20 <?php if ($primary_links): ?> <div id="primary" class="clear-block"> <?php print theme('links', $primary_links); ?> </div> <?php endif; ?>
21 <?php if ($secondary_links): ?> <div id="secondary" class="clear-block"> <?php print theme('links', $secondary_links); ?> </div> <?php endif; ?>
22 </div>
23 <div id="title">
24 <?php if ($site_name): ?>
25 <h1 id='home'> <a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>"> <?php print $site_name; ?> </a> </h1>
26 <?php endif; ?>
27 <!--<p>Lorem Ipsum Dolor Sit Amet</p>-->
28 </div>
29 </div>
30 <!-- main content starts here -->
31 <div id="homepic">
32 <div class="message">
33 <?php if ($site_name): ?>
34 <h4 id='site-name'> <a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>"> <?php print $site_name; ?> </a> </h4>
35 <?php endif; ?>
36 <?php if ($site_slogan): ?>
37 <p id='site-slogan'> <?php print $site_slogan; ?> </p>
38 <?php endif; ?>
39 </div>
40 </div>
41 <div id="bottomcontenttop"></div>
42 <div id="bottomcontent">
43 <div id="container" class="clear-block">
44 <!-- .......... sidebar-left .......... -->
45 <div class="left">
46 <?php if ($sidebar_left): ?>
47 <div id="sidebar-left" class="column sidebar"> <?php print $sidebar_left; ?> </div>
48 <?php endif; ?>
49 </div>
50 <!-- .......... sidebar-left .......... -->
51 <!-- .......... main > squeeze .......... -->
52 <div id="main" class="middle column">
53 <div id="squeeze">
54 <?php if ($mission): ?><div id="mission"><?php print $mission; ?></div><?php endif; ?>
55 <?php if ($title): ?><h1 class="title"><?php print $title; ?></h1><?php endif; ?>
56 <?php if ($tabs): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
57 <?php print $help; ?>
58 <?php print $messages; ?>
59 <?php print $content; ?>
60 </div>
61 </div>
62 <!-- .......... /main .......... -->
63 <!-- .......... sidebar-right .......... -->
64 <?php if ($sidebar_right): ?>
65 <div id="sidebar-right" class="column sidebar"> <?php print $sidebar_right; ?> </div>
66 <?php endif; ?>
67 <!-- .......... /sidebar-right .......... -->
68 </div>
69 </div>
70 <div id="bottomcontentbtm"></div>
71 <div id="footer">
72 <p>Subscribe to this feed ... <?php print $feed_icons; ?></p>
73 <p><?php print $footer_message; ?></p>
74 </div>
75 </div>
76 </body>
77 </html>

  ViewVC Help
Powered by ViewVC 1.1.2