diff --git a/layouts/foundation_1col/foundation-1col.tpl.php b/layouts/foundation_1col/foundation-1col.tpl.php
index aa85f2e..3fc6142 100644
--- a/layouts/foundation_1col/foundation-1col.tpl.php
+++ b/layouts/foundation_1col/foundation-1col.tpl.php
@@ -1,19 +1,19 @@
-<?php
-/**
- * @file
- * Template for a 3 column panel layout.
- *
- * This template provides a very simple "one column" panel display layout.
- *
- * Variables:
- * - $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['middle']: The only panel in the layout.
- */
-?>
-<div class="row" <?php !empty($css_id) ? print 'id="' . $css_id . '"' : ''; ?>>
-  <div class="medium-12 columns">
-    <?php print $content['middle']; ?>
-  </div>
-</div>
+<?php
+/**
+ * @file
+ * Template for a 3 column panel layout.
+ *
+ * This template provides a very simple "one column" panel display layout.
+ *
+ * Variables:
+ * - $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['middle']: The only panel in the layout.
+ */
+?>
+<div class="row" <?php !empty($css_id) ? print 'id="' . $css_id . '"' : ''; ?>>
+  <div class="medium-12 columns">
+    <?php print $content['middle']; ?>
+  </div>
+</div>
diff --git a/layouts/foundation_2col/foundation-2col.tpl.php b/layouts/foundation_2col/foundation-2col.tpl.php
index e3f91da..693d3a2 100644
--- a/layouts/foundation_2col/foundation-2col.tpl.php
+++ b/layouts/foundation_2col/foundation-2col.tpl.php
@@ -1,24 +1,24 @@
-<?php
-/**
- * @file
- * Template for a 2 column panel layout.
- *
- * This template provides a two column panel display layout, with
- * each column roughly equal in width.
- *
- * Variables:
- * - $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['left']: Content in the left column.
- *   - $content['right']: Content in the right column.
- */
-?>
-<div class="row" <?php !empty($css_id) ? print 'id="' . $css_id . '"' : ''; ?>>
-  <div class="medium-6 columns">
-    <?php print $content['left']; ?>
-  </div>
-  <div class="medium-6 columns">
-    <?php print $content['right']; ?>
-  </div>
-</div>
+<?php
+/**
+ * @file
+ * Template for a 2 column panel layout.
+ *
+ * This template provides a two column panel display layout, with
+ * each column roughly equal in width.
+ *
+ * Variables:
+ * - $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['left']: Content in the left column.
+ *   - $content['right']: Content in the right column.
+ */
+?>
+<div class="row" <?php !empty($css_id) ? print 'id="' . $css_id . '"' : ''; ?>>
+  <div class="medium-6 columns">
+    <?php print $content['left']; ?>
+  </div>
+  <div class="medium-6 columns">
+    <?php print $content['right']; ?>
+  </div>
+</div>
diff --git a/layouts/foundation_2col_bricks/foundation-2col-bricks.tpl.php b/layouts/foundation_2col_bricks/foundation-2col-bricks.tpl.php
index f05bd99..19ae85f 100644
--- a/layouts/foundation_2col_bricks/foundation-2col-bricks.tpl.php
+++ b/layouts/foundation_2col_bricks/foundation-2col-bricks.tpl.php
@@ -1,56 +1,56 @@
-<?php
-/**
- * @file
- * Template for a 2 column panel layout.
- *
- * This template provides a two column panel display layout, with
- * each column roughly equal in width. It is 5 rows high; the top
- * middle and bottom rows contain 1 column, while the second
- * and fourth rows contain 2 columns.
- *
- * Variables:
- * - $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['top']: Content in the top row.
- *   - $content['above_left']: Content in the left column in row 2.
- *   - $content['above_right']: Content in the right column in row 2.
- *   - $content['middle']: Content in the middle row.
- *   - $content['below_left']: Content in the left column in row 4.
- *   - $content['below_right']: Content in the right column in row 4.
- *   - $content['right']: Content in the right column.
- *   - $content['bottom']: Content in the bottom row.
- */
-?>
-<?php !empty($css_id) ? print '<div id="' . $css_id . '">' : ''; ?>
-  <div class="row">
-    <div class="medium-12 columns"><?php print $content['top']; ?></div>
-  </div>
-
-  <div class="row">
-    <div class="medium-6 columns">
-      <?php print $content['above_left']; ?>
-    </div>
-    <div class="medium-6 columns">
-      <?php print $content['above_right']; ?>
-    </div>
-  </div>
-
-  <div class="row">
-    <div class="medium-12 columns"><?php print $content['middle']; ?></div>
-  </div>
-
-  <div class="row">
-    <div class="medium-6 columns">
-      <?php print $content['below_left']; ?>
-    </div>
-
-    <div class="medium-6 columns">
-      <?php print $content['below_right']; ?>
-    </div>
-  </div>
-
-  <div class="row">
-    <div class="medium-12 columns"><?php print $content['bottom']; ?></div>
-  </div>
-<?php !empty($css_id) ? print '</div>' : ''; ?>
+<?php
+/**
+ * @file
+ * Template for a 2 column panel layout.
+ *
+ * This template provides a two column panel display layout, with
+ * each column roughly equal in width. It is 5 rows high; the top
+ * middle and bottom rows contain 1 column, while the second
+ * and fourth rows contain 2 columns.
+ *
+ * Variables:
+ * - $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['top']: Content in the top row.
+ *   - $content['above_left']: Content in the left column in row 2.
+ *   - $content['above_right']: Content in the right column in row 2.
+ *   - $content['middle']: Content in the middle row.
+ *   - $content['below_left']: Content in the left column in row 4.
+ *   - $content['below_right']: Content in the right column in row 4.
+ *   - $content['right']: Content in the right column.
+ *   - $content['bottom']: Content in the bottom row.
+ */
+?>
+<?php !empty($css_id) ? print '<div id="' . $css_id . '">' : ''; ?>
+  <div class="row">
+    <div class="medium-12 columns"><?php print $content['top']; ?></div>
+  </div>
+
+  <div class="row">
+    <div class="medium-6 columns">
+      <?php print $content['above_left']; ?>
+    </div>
+    <div class="medium-6 columns">
+      <?php print $content['above_right']; ?>
+    </div>
+  </div>
+
+  <div class="row">
+    <div class="medium-12 columns"><?php print $content['middle']; ?></div>
+  </div>
+
+  <div class="row">
+    <div class="medium-6 columns">
+      <?php print $content['below_left']; ?>
+    </div>
+
+    <div class="medium-6 columns">
+      <?php print $content['below_right']; ?>
+    </div>
+  </div>
+
+  <div class="row">
+    <div class="medium-12 columns"><?php print $content['bottom']; ?></div>
+  </div>
+<?php !empty($css_id) ? print '</div>' : ''; ?>
diff --git a/layouts/foundation_2col_stacked/foundation-2col-stacked.tpl.php b/layouts/foundation_2col_stacked/foundation-2col-stacked.tpl.php
index 7554b91..e2c448f 100644
--- a/layouts/foundation_2col_stacked/foundation-2col-stacked.tpl.php
+++ b/layouts/foundation_2col_stacked/foundation-2col-stacked.tpl.php
@@ -1,44 +1,44 @@
-<?php
-/**
- * @file
- * Template for a 2 column panel layout.
- *
- * This template provides a two column panel display layout, with
- * additional areas for the top and the bottom.
- *
- * Variables:
- * - $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['top']: Content in the top row.
- *   - $content['left']: Content in the left column.
- *   - $content['right']: Content in the right column.
- *   - $content['bottom']: Content in the bottom row.
- */
-?>
-<?php !empty($css_id) ? print '<div id="' . $css_id . '">' : ''; ?>
-  <?php if ($content['top']): ?>
-    <div class="row">
-      <div class="medium-12 columns">
-				<?php print $content['top']; ?>
-      </div>
-    </div>
-  <?php endif; ?>
-
-  <div class="row">
-    <div class="medium-6 columns">
-      <?php print $content['left']; ?>
-    </div>
-    <div class="medium-6 columns">
-      <?php print $content['right']; ?>
-    </div>
-  </div>
-
-  <?php if ($content['bottom']): ?>
-    <div class="row">
-      <div class="medium-12 columns">
-				<?php print $content['bottom']; ?>
-      </div>
-    </div>
-  <?php endif; ?>
-<?php !empty($css_id) ? print '</div>' : ''; ?>
+<?php
+/**
+ * @file
+ * Template for a 2 column panel layout.
+ *
+ * This template provides a two column panel display layout, with
+ * additional areas for the top and the bottom.
+ *
+ * Variables:
+ * - $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['top']: Content in the top row.
+ *   - $content['left']: Content in the left column.
+ *   - $content['right']: Content in the right column.
+ *   - $content['bottom']: Content in the bottom row.
+ */
+?>
+<?php !empty($css_id) ? print '<div id="' . $css_id . '">' : ''; ?>
+  <?php if ($content['top']): ?>
+    <div class="row">
+      <div class="medium-12 columns">
+        <?php print $content['top']; ?>
+      </div>
+    </div>
+  <?php endif; ?>
+
+  <div class="row">
+    <div class="medium-6 columns">
+      <?php print $content['left']; ?>
+    </div>
+    <div class="medium-6 columns">
+      <?php print $content['right']; ?>
+    </div>
+  </div>
+
+  <?php if ($content['bottom']): ?>
+    <div class="row">
+      <div class="medium-12 columns">
+        <?php print $content['bottom']; ?>
+      </div>
+    </div>
+  <?php endif; ?>
+<?php !empty($css_id) ? print '</div>' : ''; ?>
diff --git a/layouts/foundation_3col/foundation-3col.tpl.php b/layouts/foundation_3col/foundation-3col.tpl.php
index 2949c73..3f32c5d 100644
--- a/layouts/foundation_3col/foundation-3col.tpl.php
+++ b/layouts/foundation_3col/foundation-3col.tpl.php
@@ -1,29 +1,29 @@
-<?php
-/**
- * @file
- * Template for a 3 column panel layout.
- *
- * This template provides a three column panel display layout, with
- * each column roughly equal in width.
- *
- * Variables:
- * - $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['left']: Content in the left column.
- *   - $content['middle']: Content in the middle column.
- *   - $content['right']: Content in the right column.
- */
-?>
-
-<div class="row" <?php !empty($css_id) ? print 'id="' . $css_id . '"' : ''; ?>>
-  <div class="medium-4 columns">
-    <?php print $content['left']; ?>
-  </div>
-  <div class="medium-4 columns">
-    <?php print $content['middle']; ?>
-  </div>
-  <div class="medium-4 columns">
-    <?php print $content['right']; ?>
-  </div>
-</div> <!-- panels row -->
+<?php
+/**
+ * @file
+ * Template for a 3 column panel layout.
+ *
+ * This template provides a three column panel display layout, with
+ * each column roughly equal in width.
+ *
+ * Variables:
+ * - $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['left']: Content in the left column.
+ *   - $content['middle']: Content in the middle column.
+ *   - $content['right']: Content in the right column.
+ */
+?>
+
+<div class="row" <?php !empty($css_id) ? print 'id="' . $css_id . '"' : ''; ?>>
+  <div class="medium-4 columns">
+    <?php print $content['left']; ?>
+  </div>
+  <div class="medium-4 columns">
+    <?php print $content['middle']; ?>
+  </div>
+  <div class="medium-4 columns">
+    <?php print $content['right']; ?>
+  </div>
+</div> <!-- panels row -->
diff --git a/layouts/foundation_3col_stacked/foundation-3col-stacked.tpl.php b/layouts/foundation_3col_stacked/foundation-3col-stacked.tpl.php
index da5f9ab..fb444fa 100644
--- a/layouts/foundation_3col_stacked/foundation-3col-stacked.tpl.php
+++ b/layouts/foundation_3col_stacked/foundation-3col-stacked.tpl.php
@@ -1,48 +1,48 @@
-<?php
-/**
- * @file
- * Template for a 3 column panel layout.
- *
- * This template provides a three column 23%-33%-33% panel display layout, with
- * additional areas for the top and the bottom.
- *
- * Variables:
- * - $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['top']: Content in the top row.
- *   - $content['left']: Content in the left column.
- *   - $content['middle']: Content in the middle column.
- *   - $content['right']: Content in the right column.
- *   - $content['bottom']: Content in the bottom row.
- */
-?>
-<?php !empty($css_id) ? print '<div id="' . $css_id . '">' : ''; ?>
-  <?php if ($content['top']): ?>
-    <div class="row">
-      <div class="small-12 columns">
-			  <?php print $content['top']; ?>
-      </div>
-		</div>
-  <?php endif ?>
-
-  <div class="row">
-    <div class="small-12 medium-4 columns">
-      <?php print $content['left']; ?>
-    </div>
-    <div class="small-12 medium-4 columns">
-      <?php print $content['middle']; ?>
-    </div>
-    <div class="small-12 medium-4 columns">
-      <?php print $content['right']; ?>
-    </div>
-  </div>
-
-  <?php if ($content['bottom']): ?>
-    <div class="row">
-      <div class="small-12 columns">
-			  <?php print $content['bottom']; ?>
-      </div>
-    </div>
-  <?php endif ?>
-<?php !empty($css_id) ? print '</div>' : ''; ?>
+<?php
+/**
+ * @file
+ * Template for a 3 column panel layout.
+ *
+ * This template provides a three column 23%-33%-33% panel display layout, with
+ * additional areas for the top and the bottom.
+ *
+ * Variables:
+ * - $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['top']: Content in the top row.
+ *   - $content['left']: Content in the left column.
+ *   - $content['middle']: Content in the middle column.
+ *   - $content['right']: Content in the right column.
+ *   - $content['bottom']: Content in the bottom row.
+ */
+?>
+<?php !empty($css_id) ? print '<div id="' . $css_id . '">' : ''; ?>
+  <?php if ($content['top']): ?>
+    <div class="row">
+      <div class="small-12 columns">
+        <?php print $content['top']; ?>
+      </div>
+    </div>
+  <?php endif; ?>
+
+  <div class="row">
+    <div class="small-12 medium-4 columns">
+      <?php print $content['left']; ?>
+    </div>
+    <div class="small-12 medium-4 columns">
+      <?php print $content['middle']; ?>
+    </div>
+    <div class="small-12 medium-4 columns">
+      <?php print $content['right']; ?>
+    </div>
+  </div>
+
+  <?php if ($content['bottom']): ?>
+    <div class="row">
+      <div class="small-12 columns">
+        <?php print $content['bottom']; ?>
+      </div>
+    </div>
+  <?php endif; ?>
+<?php !empty($css_id) ? print '</div>' : ''; ?>
diff --git a/layouts/foundation_4col/foundation-4col.tpl.php b/layouts/foundation_4col/foundation-4col.tpl.php
index d7c8a68..95ef06c 100644
--- a/layouts/foundation_4col/foundation-4col.tpl.php
+++ b/layouts/foundation_4col/foundation-4col.tpl.php
@@ -1,32 +1,32 @@
-<?php
-/**
- * @file
- * Template for a 3 column panel layout.
- *
- * This template provides a three column panel display layout, with
- * each column roughly equal in width.
- *
- * Variables:
- * - $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['left']: Content in the left column.
- *   - $content['middle']: Content in the middle column.
- *   - $content['right']: Content in the right column.
- */
-?>
-
-<div class="row" <?php !empty($css_id) ? print 'id="' . $css_id . '"' : ''; ?>>
-  <div class="medium-3 columns">
-    <?php print $content['left']; ?>
-  </div>
-  <div class="medium-3 columns">
-    <?php print $content['middle_left']; ?>
-  </div>
-  <div class="medium-3 columns">
-    <?php print $content['middle_right']; ?>
-  </div>
-  <div class="medium-3 columns">
-    <?php print $content['right']; ?>
-  </div>
-</div> <!-- panels row -->
+<?php
+/**
+ * @file
+ * Template for a 3 column panel layout.
+ *
+ * This template provides a three column panel display layout, with
+ * each column roughly equal in width.
+ *
+ * Variables:
+ * - $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['left']: Content in the left column.
+ *   - $content['middle']: Content in the middle column.
+ *   - $content['right']: Content in the right column.
+ */
+?>
+
+<div class="row" <?php !empty($css_id) ? print 'id="' . $css_id . '"' : ''; ?>>
+  <div class="medium-3 columns">
+    <?php print $content['left']; ?>
+  </div>
+  <div class="medium-3 columns">
+    <?php print $content['middle_left']; ?>
+  </div>
+  <div class="medium-3 columns">
+    <?php print $content['middle_right']; ?>
+  </div>
+  <div class="medium-3 columns">
+    <?php print $content['right']; ?>
+  </div>
+</div> <!-- panels row -->
