diff --git a/core/modules/layout/layouts/static/one-col/one-col.tpl.php b/core/modules/layout/layouts/static/one-col/one-col.tpl.php
new file mode 100644
index 0000000..114d976
--- /dev/null
+++ b/core/modules/layout/layouts/static/one-col/one-col.tpl.php
@@ -0,0 +1,18 @@
+<?php
+/**
+ * @file
+ * Template for a 1 column layout.
+ *
+ * This template provides a simple one column display layout.
+ *
+ * Variables:
+ * - $content: An array of content, each item in the array is keyed to one
+ *   region of the layout. This layout supports only one section:
+ *   - $content['content']: Content in the content column.
+ */
+?>
+<div class="layout-display layout-one-col clearfix">
+  <div class="layout-region">
+    <?php print $content['content']; ?>
+  </div>
+</div>
diff --git a/core/modules/layout/layouts/static/one-col/one-col.yml b/core/modules/layout/layouts/static/one-col/one-col.yml
new file mode 100644
index 0000000..deaa7f8
--- /dev/null
+++ b/core/modules/layout/layouts/static/one-col/one-col.yml
@@ -0,0 +1,5 @@
+title: One column
+category: Columns: 1
+template: one-col
+regions:
+  content: 'Content'
diff --git a/core/modules/layout/layouts/static/twocol/two-col.css b/core/modules/layout/layouts/static/twocol/two-col.css
new file mode 100644
index 0000000..552b695
--- /dev/null
+++ b/core/modules/layout/layouts/static/twocol/two-col.css
@@ -0,0 +1,9 @@
+.layout-two-col .layout-col-left {
+  float: left;
+  width: 50%;
+}
+
+.layout-two-col .layout-col-right {
+  float: right;
+  width: 50%;
+}
diff --git a/core/modules/layout/layouts/static/twocol/two-col.tpl.php b/core/modules/layout/layouts/static/twocol/two-col.tpl.php
new file mode 100644
index 0000000..901183f
--- /dev/null
+++ b/core/modules/layout/layouts/static/twocol/two-col.tpl.php
@@ -0,0 +1,24 @@
+<?php
+/**
+ * @file
+ * Template for a 2 column layout.
+ *
+ * This template provides a two column display layout, with each column equal in
+ * width.
+ *
+ * Variables:
+ * - $content: An array of content, each item in the array is keyed to one
+ *   region 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="layout-display layout-two-col clearfix">
+  <div class="layout-region layout-col-left">
+    <?php print $content['left']; ?>
+  </div>
+
+  <div class="layout-region layout-col-right">
+    <?php print $content['right']; ?>
+  </div>
+</div>
diff --git a/core/modules/layout/layouts/static/twocol/two-col.yml b/core/modules/layout/layouts/static/twocol/two-col.yml
new file mode 100644
index 0000000..7ee126f
--- /dev/null
+++ b/core/modules/layout/layouts/static/twocol/two-col.yml
@@ -0,0 +1,8 @@
+title: Two column
+category: Columns: 2
+template: two-col
+stylesheets:
+  - two-col.css
+regions:
+  left: 'Left side'
+  right: 'Right side'
