From 3a670f187039bfa87c7aea18606d40b26e143874 Mon Sep 17 00:00:00 2001
From: Tim Steiner <tsteiner2@unl.edu>
Date: Fri, 30 Apr 2010 20:15:40 +0000
Subject: [PATCH] Get rid of the region wrappers.

git-svn-id: file:///tmp/wdn_thm_drupal/branches/drupal-7.x@71 20a16fea-79d4-4915-8869-1ea9d5ebf173
---
 sites/all/themes/unl_wdn/region.tpl.php | 30 +++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 sites/all/themes/unl_wdn/region.tpl.php

diff --git a/sites/all/themes/unl_wdn/region.tpl.php b/sites/all/themes/unl_wdn/region.tpl.php
new file mode 100644
index 00000000..2e904294
--- /dev/null
+++ b/sites/all/themes/unl_wdn/region.tpl.php
@@ -0,0 +1,30 @@
+<?php
+// $Id: region.tpl.php,v 1.1 2009/10/05 02:43:01 webchick Exp $
+
+/**
+ * @file
+ * Default theme implementation to display a region.
+ *
+ * Available variables:
+ * - $content: The content for this region, typically blocks.
+ * - $classes: String of classes that can be used to style contextually through
+ *   CSS. It can be manipulated through the variable $classes_array from
+ *   preprocess functions. The default values can be one or more of the following:
+ *   - region: The current template type, i.e., "theming hook".
+ *   - region-[name]: The name of the region with underscores replaced with
+ *     dashes. For example, the page_top region would have a region-page-top class.
+ * - $region: The name of the region variable as defined in the theme's .info file.
+ *
+ * Helper variables:
+ * - $classes_array: Array of html class attribute values. It is flattened
+ *   into a string within the variable $classes.
+ * - $is_admin: Flags true when the current user is an administrator.
+ * - $is_front: Flags true when presented in the front page.
+ * - $logged_in: Flags true when the current user is a logged-in member.
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_region()
+ * @see template_process()
+ */
+
+echo $content;
-- 
GitLab