|
@@ -0,0 +1,25 @@
|
|
|
+<?php
|
|
|
+/**
|
|
|
+ * Large Quote
|
|
|
+ *
|
|
|
+ * @package Remote
|
|
|
+ */
|
|
|
+
|
|
|
+return array(
|
|
|
+ 'title' => __( 'Large quote', 'remote' ),
|
|
|
+ 'categories' => array( 'text', 'featured' ),
|
|
|
+ 'content' =>
|
|
|
+ '<!-- wp:group {"style":{"spacing":{"blockGap":"40px","padding":{"top":"20px","bottom":"20px"}}}} -->
|
|
|
+ <div class="wp-block-group" style="padding-top:20px;padding-bottom:20px">
|
|
|
+
|
|
|
+ <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.25"}},"fontSize":"medium"} -->
|
|
|
+ <p class="has-medium-font-size" style="line-height:1.25">' . esc_html__( 'I’m spending more time with my family, exercising more, and getting more sleep.', 'remote' ) . '</p>
|
|
|
+ <!-- /wp:paragraph -->
|
|
|
+
|
|
|
+ <!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"400","lineHeight":"1.3"}},"fontSize":"small"} -->
|
|
|
+ <p class="has-small-font-size" style="font-style:normal;font-weight:400;line-height:1.3">' . esc_html__( '— Jane Adams', 'remote' ) . '</p>
|
|
|
+ <!-- /wp:paragraph -->
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <!-- /wp:group -->',
|
|
|
+);
|