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

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

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


Revision 1.6 - (show annotations) (download) (as text)
Wed Jun 25 12:04:34 2008 UTC (17 months ago) by chrisada
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1
Changes since 1.5: +54 -40 lines
File MIME type: text/x-php
Initial commit for Drupal 6
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language; ?>" xml:lang="<?php print $language->language; ?>">
3
4 <head profile="http://gmpg.org/xfn/11">
5 <title><?php print $head_title ?></title>
6 <?php print $head ?>
7 <?php print $styles ?>
8 <?php print $scripts ?>
9 </head>
10
11 <body class="<?php print $body_classes; ?>">
12 <a class="skiplink" href="#startcontent" accesskey="2">Skip to content</a>
13 <div id="page">
14 <div id="header">
15 <?php if ($site_name): ?>
16 <h1 class="blog-title"><a href="<?php print $base_path; ?>" accesskey="1"><?php print $site_name; ?></a></h1>
17 <?php endif; ?>
18 <?php if ($site_slogan): ?>
19 <p class="description"><?php print $site_slogan; ?></p>
20 <?php endif; ?>
21 <?php if ($primary_links): ?>
22 <?php print theme('links', $primary_links, array('class' => 'k2menu')) ?>
23 <?php endif; ?>
24 </div> <!-- #header -->
25 <hr />
26 <div class="content">
27 <div id="primary-wrapper">
28 <div id="primary">
29 <?php if ($breadcrumb or $tabs or $help or $messages): ?>
30 <div id="notices">
31 <?php print $breadcrumb; ?>
32 <?php if ($title): ?>
33 <h1 class="title"><?php print $title; ?></h1>
34 <?php endif; ?>
35 <?php if ($tabs): ?>
36 <div class="tabs"><?php print $tabs; ?></div>
37 <?php if ($tabs2): print $tabs2; endif; ?>
38 <?php endif; ?>
39 <?php print $messages; ?>
40 <?php print $help; ?>
41 </div> <!-- /#content-header -->
42 <?php endif; ?>
43 <a name="startcontent" id="startcontent"></a>
44 <div id="rollingcontent" class="hfeed">
45 <?php print $content ?>
46 </div><!-- #rollingcontent .hfeed -->
47 </div> <!-- #primary -->
48 </div> <!-- #primary-wrapper -->
49
50
51 <?php if ($right): ?>
52 <div id="sidebar-1" class="secondary">
53 <?php print $right; ?>
54 </div> <!-- #sidebar-1 -->
55 <?php endif; ?>
56
57 <?php if ($left): ?>
58 <div id="sidebar-2" class="secondary">
59 <?php print $left; ?>
60 </div> <!-- #sidebar-2 -->
61 <?php endif; ?>
62
63
64
65 <div class="clear"></div>
66 </div> <!-- .content -->
67 <div class="clear"></div>
68 </div> <!-- Close Page -->
69 <hr />
70 <div id="footer">
71
72 <p class="footerpoweredby">
73 Powered by <a href="http://drupal.org/" title="Community Plumbling">Drupal</a> and <a href="http://getk2.com/" title="Loves you like a kitten.">K2<span class="k2-version">1.0-RC6</span></a> </p>
74 </div>
75
76 <?php print $closure ?>
77 </body>
78 </html>

  ViewVC Help
Powered by ViewVC 1.1.2