summaryrefslogtreecommitdiff
path: root/themes/seven/page.tpl.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-07-31 19:35:57 +0000
committerDries Buytaert <dries@buytaert.net>2009-07-31 19:35:57 +0000
commit04d7eb4acb8b892e489a3abe49c9a98e5d863f7e (patch)
tree82e5c46fdc194150e3c75a4a9c346cbbb581e7df /themes/seven/page.tpl.php
parentd4228535043619ada5192001acde645238660b37 (diff)
downloadbrdo-04d7eb4acb8b892e489a3abe49c9a98e5d863f7e.tar.gz
brdo-04d7eb4acb8b892e489a3abe49c9a98e5d863f7e.tar.bz2
- Patch #484860 by markboulton, Gábor Hojtsy, cwgordon7 et al: initial Drupal 7 admin theme. Yeaha!
Diffstat (limited to 'themes/seven/page.tpl.php')
-rw-r--r--themes/seven/page.tpl.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/themes/seven/page.tpl.php b/themes/seven/page.tpl.php
new file mode 100644
index 000000000..02ba7d9b7
--- /dev/null
+++ b/themes/seven/page.tpl.php
@@ -0,0 +1,48 @@
+<?php
+// $Id$
+?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
+ "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>"
+ <?php print $rdf_namespaces; ?>>
+ <head profile="<?php print $grddl_profile; ?>">
+ <title><?php print $head_title; ?></title>
+ <?php print $head; ?>
+ <?php print $styles; ?>
+ <?php print $scripts; ?>
+ <?php print $ie_styles; ?>
+ </head>
+ <body class="<?php print $classes; ?>">
+
+ <?php print $page_top; ?>
+
+ <div id="branding" class="clearfix">
+ <div class="back-to-site"><?php print $back_to_site; ?></div>
+ <?php if ($title): ?><h1 class="page-title"><?php print $title; ?></h1><?php endif; ?>
+ <?php if ($primary_local_tasks): ?><ul class="tabs primary"><?php print $primary_local_tasks; ?></ul><?php endif; ?>
+ </div>
+
+ <div id="page">
+ <?php if ($secondary_local_tasks): ?><ul class="tabs secondary"><?php print $secondary_local_tasks; ?></ul><?php endif; ?>
+
+ <div id="content" class="clearfix">
+ <?php if ($show_messages && $messages): ?>
+ <div id="console" class="clearfix"><?php print $messages; ?></div>
+ <?php endif; ?>
+ <?php if ($help): ?>
+ <div id="help">
+ <?php print $help; ?>
+ </div>
+ <?php endif; ?>
+ <?php print $content; ?>
+ </div>
+
+ <div id="footer">
+ <?php print $feed_icons; ?>
+ </div>
+
+ </div>
+
+ <?php print $page_bottom; ?>
+
+ </body>
+</html>