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

Contents of /contributions/themes/ablock/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 Jul 29 05:03:02 2008 UTC (16 months ago) by couzinhub
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +89 -0 lines
File MIME type: text/x-php
revision of templates and css
1 <?php // $Id: page.tpl.php,v 1.1.2.1 2008/07/22 23:35:28 couzinhub Exp $ ?>
2
3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
5
6 <head>
7 <title><?php print $head_title; ?></title>
8 <?php print $head; ?>
9 <?php print $styles; ?>
10 <?php print $scripts; ?>
11
12 <!--[if lte IE 6]>
13 <style type="text/css" media="all">@import "<?php print base_path() . path_to_theme() ?>/ie6.css";</style>
14 <![endif]-->
15 <!--[if IE 7]>
16 <style type="text/css" media="all">@import "<?php print base_path() . path_to_theme() ?>/ie7.css";</style>
17 <![endif]-->
18
19 </head>
20
21 <?php /* different ids allow for separate theming of the home page */ ?>
22 <body>
23 <div id="header">
24
25 <?php if ($logo): ?>
26 <a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>">
27 <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo" />
28 </a>
29 <?php endif; ?>
30
31 <?php if ($site_name): ?>
32 <h1 id='site-name'>
33 <a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>">
34 <?php print $site_name; ?>
35 </a>
36 </h1>
37 <?php endif; ?>
38
39 <?php if ($site_slogan): ?>
40 <div id='site-slogan'>
41 <?php print $site_slogan; ?>
42 </div>
43 <?php endif; ?>
44
45 <?php print $search_box; ?>
46 <?php print $feed_icons; ?>
47
48 <div class="clear-block"></div>
49 </div> <!-- /header -->
50
51 <?php if ($primary_links || $secondary_links): ?>
52 <div id="navigation" class="menu <?php if ($primary_links) { print "withprimary"; } if ($secondary_links) { print " withsecondary"; } ?> ">
53 <?php if ($primary_links): ?>
54 <div id="primary" class="clear-block">
55 <?php print theme('menu_links', $primary_links); ?>
56 </div>
57 <?php endif; ?>
58
59 <?php if ($secondary_links): ?>
60 <div id="secondary" class="clear-block">
61 <?php print theme('menu_links', $secondary_links); ?>
62 </div>
63 <?php endif; ?>
64 </div> <!-- /navigation -->
65 <?php endif; ?>
66
67
68 <?php if ($breadcrumb): ?><?php print $breadcrumb; ?><?php endif; ?>
69
70 <div id="main">
71 <?php if ($content_top):?><?php print $content_top; ?><?php endif; ?>
72 <?php if ($mission): ?><div id="mission"><?php print $mission; ?></div><?php endif; ?>
73 <?php print $messages; ?>
74 <?php if ($title): ?><h1 class="title"><?php print $title; ?></h1><?php endif; ?>
75 <?php if ($tabs): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
76 <?php print $help; ?>
77 <?php print $content; ?>
78 <?php if ($content_bottom): ?><?php print $content_bottom; ?><?php endif; ?>
79 </div> <!-- /main -->
80
81 <div id="footer"><?php print $footer_message; ?></div>
82
83 <?php if ($closure_region): ?>
84 <div id="closure-blocks"><?php print $closure_region; ?></div>
85 <?php endif; ?>
86
87
88 </body>
89 </html>

  ViewVC Help
Powered by ViewVC 1.1.2