large-quote.php 1009 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Large Quote
  4. *
  5. * @package Remote
  6. */
  7. return array(
  8. 'title' => __( 'Large quote', 'remote' ),
  9. 'categories' => array( 'text', 'featured' ),
  10. 'content' =>
  11. '<!-- wp:group {"style":{"spacing":{"blockGap":"40px","padding":{"top":"20px","bottom":"20px"}}}} -->
  12. <div class="wp-block-group" style="padding-top:20px;padding-bottom:20px">
  13. <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.25"}},"fontSize":"medium"} -->
  14. <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>
  15. <!-- /wp:paragraph -->
  16. <!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"400","lineHeight":"1.3"}},"fontSize":"small"} -->
  17. <p class="has-small-font-size" style="font-style:normal;font-weight:400;line-height:1.3">' . esc_html__( '— Jane Adams', 'remote' ) . '</p>
  18. <!-- /wp:paragraph -->
  19. </div>
  20. <!-- /wp:group -->',
  21. );