summaryrefslogtreecommitdiff
path: root/sites/all/themes/zen/layouts/zen_one_sidebar_first/zen-one-sidebar-first-admin.tpl.php
diff options
context:
space:
mode:
Diffstat (limited to 'sites/all/themes/zen/layouts/zen_one_sidebar_first/zen-one-sidebar-first-admin.tpl.php')
-rw-r--r--sites/all/themes/zen/layouts/zen_one_sidebar_first/zen-one-sidebar-first-admin.tpl.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/sites/all/themes/zen/layouts/zen_one_sidebar_first/zen-one-sidebar-first-admin.tpl.php b/sites/all/themes/zen/layouts/zen_one_sidebar_first/zen-one-sidebar-first-admin.tpl.php
new file mode 100644
index 000000000..b279c469a
--- /dev/null
+++ b/sites/all/themes/zen/layouts/zen_one_sidebar_first/zen-one-sidebar-first-admin.tpl.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * @file
+ * Template for a 1 row, 2 column Zen-based panel layout.
+ *
+ * This template provides a two column panel display layout, with
+ * additional areas for the top and the bottom.
+ *
+ * Variables:
+ * - $css_id: An optional CSS id to use for the layout.
+ * - $content: An array of content, each item in the array is keyed to one
+ * panel of the layout. This layout supports the following sections:
+ * - $content['content']: Content in the main column.
+ * - $content['sidebar_first']: Content in the first column.
+ */
+?>
+
+<div class="panel-display zen-one-sidebar-first clearfix" <?php if (!empty($css_id)) { print "id=\"$css_id\""; } ?>>
+
+ <div class="panel-content"><div class="panel-content-inner inside panel-panel">
+ <?php print $content['content']; ?>
+ </div></div><!-- /.panel-content-inner, /.panel-content -->
+
+ <div class="panel-sidebar-first"><div class="panel-sidebar-first-inner inside panel-panel">
+ <?php print $content['sidebar_first']; ?>
+ </div></div><!-- /.panel-sidebar-first-inner, /.panel-sidebar-first -->
+
+</div><!-- /.zen-one-sidebar-first -->