small-quote.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Small quote.
  4. *
  5. * @package Remote
  6. */
  7. return array(
  8. 'title' => __( 'Small quote', 'remote' ),
  9. 'categories' => array( 'text', 'featured' ),
  10. 'content' => '
  11. <!-- wp:columns {"style":{"spacing":{"blockGap":"30px"}}} -->
  12. <div class="wp-block-columns"><!-- wp:column {"width":"50px","style":{"spacing":{"padding":{"top":"28px"}}}} -->
  13. <div class="wp-block-column" style="padding-top:28px;flex-basis:50px"><!-- wp:image {"width":48,"sizeSlug":"large","className":"is-style-rounded"} -->
  14. <figure class="wp-block-image size-large is-resized is-style-rounded"><img src="' . esc_url( get_template_directory_uri() ) . '/assets/images/tattooed-woman.png" alt="' . esc_attr__( 'Picture of a user', 'remote' ) . '" width="48"/></figure>
  15. <!-- /wp:image --></div>
  16. <!-- /wp:column -->
  17. <!-- wp:column -->
  18. <div class="wp-block-column"><!-- wp:group {"style":{"spacing":{"blockGap":"30px","padding":{"top":"20px","bottom":"20px"}}}} -->
  19. <div class="wp-block-group" style="padding-top:20px;padding-bottom:20px"><!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.5"}},"fontSize":"normal"} -->
  20. <p class="has-normal-font-size" style="line-height:1.5">' . esc_html__( 'Now that I’m working from home, I find that I am spending more time with my family, exercising more, and getting more sleep. This has not been at the expense of my productivity at work — if anything, my productivity has improved as well.', 'remote') . '</p>
  21. <!-- /wp:paragraph -->
  22. <!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"400","lineHeight":"1.3"}},"fontSize":"small"} -->
  23. <p class="has-small-font-size" style="font-style:normal;font-weight:400;line-height:1.3">' . esc_html__( '— Jane Adams', 'remote') . '</p>
  24. <!-- /wp:paragraph --></div>
  25. <!-- /wp:group --></div>
  26. <!-- /wp:column --></div>
  27. <!-- /wp:columns -->
  28. ',
  29. );