diff --git a/wp-content/themes/twentyfourteen/functions.php b/wp-content/themes/twentyfourteen/functions.php
index c2830f6ad6..f39296b1ba 100644
--- a/wp-content/themes/twentyfourteen/functions.php
+++ b/wp-content/themes/twentyfourteen/functions.php
@@ -678,6 +678,9 @@ require get_template_directory() . '/inc/template-tags.php';
// Add Customizer functionality.
require get_template_directory() . '/inc/customizer.php';
+// Add support for block patterns.
+require get_template_directory() . '/inc/block-patterns.php';
+
/*
* Add Featured Content functionality.
*
diff --git a/wp-content/themes/twentyfourteen/images/bridge.jpg b/wp-content/themes/twentyfourteen/images/bridge.jpg
new file mode 100644
index 0000000000..d172bb2818
Binary files /dev/null and b/wp-content/themes/twentyfourteen/images/bridge.jpg differ
diff --git a/wp-content/themes/twentyfourteen/images/clouds.jpg b/wp-content/themes/twentyfourteen/images/clouds.jpg
new file mode 100644
index 0000000000..f753465d6f
Binary files /dev/null and b/wp-content/themes/twentyfourteen/images/clouds.jpg differ
diff --git a/wp-content/themes/twentyfourteen/images/person.jpg b/wp-content/themes/twentyfourteen/images/person.jpg
new file mode 100644
index 0000000000..8dbad50819
Binary files /dev/null and b/wp-content/themes/twentyfourteen/images/person.jpg differ
diff --git a/wp-content/themes/twentyfourteen/images/street.jpg b/wp-content/themes/twentyfourteen/images/street.jpg
new file mode 100644
index 0000000000..71735a04b6
Binary files /dev/null and b/wp-content/themes/twentyfourteen/images/street.jpg differ
diff --git a/wp-content/themes/twentyfourteen/images/sunset.jpg b/wp-content/themes/twentyfourteen/images/sunset.jpg
new file mode 100644
index 0000000000..8c1b379fba
Binary files /dev/null and b/wp-content/themes/twentyfourteen/images/sunset.jpg differ
diff --git a/wp-content/themes/twentyfourteen/inc/block-patterns.php b/wp-content/themes/twentyfourteen/inc/block-patterns.php
new file mode 100644
index 0000000000..13232e77da
--- /dev/null
+++ b/wp-content/themes/twentyfourteen/inc/block-patterns.php
@@ -0,0 +1,73 @@
+ esc_html__( 'Twenty Fourteen', 'twentyfourteen' ) )
+ );
+}
+
+/**
+ * Register Block Patterns.
+ */
+if ( function_exists( 'register_block_pattern' ) ) {
+
+ // Description
+ register_block_pattern(
+ 'twentyfourteen/about',
+ array(
+ 'title' => esc_html__( 'About', 'twentyfourteen' ),
+ 'categories' => array( 'twentyfourteen' ),
+ 'viewportWidth' => 1000,
+ 'content' => '
' . esc_html__( 'Hello, my name is Joan. I am passionate about writing, travel, and photography.', 'twentyfourteen' ) . '
' . esc_html__( 'I’ve traveled to over 60 countries, and have made many friends along the way. I created this website to keep track of the memories I’ve made in my years of traveling.', 'twentyfourteen' ) . '
' . esc_html__( 'My first year of traveling. I visited China, Thailand, Japan, and India.', 'twentyfourteen' ) . '
' . esc_html__( '2012', 'twentyfourteen' ) . '
' . esc_html__( 'In 2012, I expanded my travels to Europe. I spent time in Poland, Germany, Italy, France, and Spain. ', 'twentyfourteen' ) . '
' . esc_html__( '2016', 'twentyfourteen' ) . '
' . esc_html__( 'This year was devoted entirely to the western hemisphere. I went on a month-long road trip through the U.S.A. and Canada, and also visited Mexico, Brazil, and Colombia.', 'twentyfourteen' ) . '