page-about.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. /**
  3. * About page block pattern
  4. */
  5. return array(
  6. 'title' => __( 'About page', 'stewart' ),
  7. 'categories' => array( 'pages' ),
  8. 'content' => '<!-- wp:paragraph {"style":{"typography":{"lineHeight":"1","fontSize":"72px"}}} -->
  9. <p style="font-size:72px;line-height:1">' . wp_kses_post( __( 'Jenn<br>Stewart', 'stewart' ) ) . '</p>
  10. <!-- /wp:paragraph -->
  11. <!-- wp:group {"style":{"spacing":{"padding":{"bottom":"1em"}}}} -->
  12. <div class="wp-block-group" style="padding-bottom:1em"><!-- wp:paragraph -->
  13. <p>' . esc_html__( 'The artist: handsome, clever, and rich, with a comfortable home and happy disposition, seemed to unite some of the best blessings of existence; and had lived nearly twenty-one years in the world with very little to distress or vex her.', 'stewart' ) . '</p>
  14. <!-- /wp:paragraph --></div>
  15. <!-- /wp:group -->
  16. <!-- wp:image {"sizeSlug":"large","linkDestination":"none"} -->
  17. <figure class="wp-block-image size-large"><img src="' . esc_url( get_template_directory_uri() ) . '/assets/images/about.jpg" alt="' . esc_html__( 'A collage featuring the portrait of a woman.', 'stewart' ) . '"/></figure>
  18. <!-- /wp:image -->
  19. <!-- wp:columns -->
  20. <div class="wp-block-columns"><!-- wp:column {"width":"33%"} -->
  21. <div class="wp-block-column" style="flex-basis:33%"><!-- wp:heading {"level":2,"fontSize":"extra-large"} -->
  22. <h2 class="has-extra-large-font-size">' . esc_html__( 'Experience', 'stewart' ) . '</h3>
  23. <!-- /wp:heading --></div>
  24. <!-- /wp:column -->
  25. <!-- wp:column -->
  26. <div class="wp-block-column"><!-- wp:list -->
  27. <ul><li>' . esc_html__( 'The mildness of her temper had hardly allowed her to impose any restraint.', 'stewart' ) . '</li></ul>
  28. <!-- /wp:list --></div>
  29. <!-- /wp:column --></div>
  30. <!-- /wp:columns -->
  31. <!-- wp:columns -->
  32. <div class="wp-block-columns"><!-- wp:column {"width":"33%"} -->
  33. <div class="wp-block-column" style="flex-basis:33%"><!-- wp:heading {"level":2,"fontSize":"extra-large"} -->
  34. <h2 class="has-extra-large-font-size">' . esc_html__( 'Awards', 'stewart' ) . '</h3>
  35. <!-- /wp:heading --></div>
  36. <!-- /wp:column -->
  37. <!-- wp:column -->
  38. <div class="wp-block-column"><!-- wp:list -->
  39. <ul><li>' . esc_html__( 'Seems to unite some of the best blessings of existence.', 'stewart' ) . '</li><li>' . esc_html__( 'Nearly twenty-one years in the world with very little to distress or vex her.', 'stewart' ) . '</li></ul>
  40. <!-- /wp:list --></div>
  41. <!-- /wp:column --></div>
  42. <!-- /wp:columns -->',
  43. );