Index: layouts/plain.inc
===================================================================
RCS file: layouts/plain.inc
diff -N layouts/plain.inc
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ layouts/plain.inc	1 Jun 2008 17:42:28 -0000
@@ -0,0 +1,33 @@
+<?php
+// $Id$
+
+/**
+ * Implementation of hook_panels_layouts().
+ */
+function panels_plain_panels_layouts() {
+  $items['plain'] = array(
+    'module' => 'panels',
+    'title' => t('Plain output'),
+    'icon' => 'layouts/plain.png',
+    'theme' => 'panels_plain',
+    'panels' => array('content' => t('Content')),
+  );
+  return $items;
+}
+
+/**
+ * This function uses heredoc notation to make it easier to convert to a template.
+ */
+function theme_panels_plain($id, $content) {
+  if ($id) {
+    $idstr = " id='$id'";
+  }
+
+  $output = <<<EOT
+<div class="panel-display"$idstr>
+  $content[content]
+</div>
+EOT;
+  return $output;
+}
+
