film-credits.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * Film credits.
  4. *
  5. * @package Videomaker
  6. */
  7. return array(
  8. 'title' => __( 'Film credits', 'videomaker' ),
  9. 'categories' => array( 'videomaker' ),
  10. 'content' => '<!-- wp:spacer {"height":50} -->
  11. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  12. <!-- /wp:spacer -->
  13. <!-- wp:paragraph {"align":"center","style":{"typography":{"lineHeight":"1.3"}},"fontSize":"medium"} -->
  14. <p class="has-text-align-center has-medium-font-size" style="line-height:1.3">' . esc_html__( 'Based on the novel “Working at Dawn” by', 'videomaker' ) . '</p>
  15. <!-- /wp:paragraph -->
  16. <!-- wp:paragraph {"align":"center","style":{"typography":{"lineHeight":"1.3"}},"fontSize":"large"} -->
  17. <p class="has-text-align-center has-large-font-size" style="line-height:1.3">' . esc_html__( 'LOIS HERBERT', 'videomaker' ) . '</p>
  18. <!-- /wp:paragraph -->
  19. <!-- wp:spacer {"height":20} -->
  20. <div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>
  21. <!-- /wp:spacer -->
  22. <!-- wp:paragraph {"align":"center","style":{"typography":{"lineHeight":"1.3"}},"fontSize":"medium"} -->
  23. <p class="has-text-align-center has-medium-font-size" style="line-height:1.3">' . esc_html__( 'Screenplay by', 'videomaker' ) . '</p>
  24. <!-- /wp:paragraph -->
  25. <!-- wp:paragraph {"align":"center","style":{"typography":{"lineHeight":"1.3"}},"fontSize":"large"} -->
  26. <p class="has-text-align-center has-large-font-size" style="line-height:1.3">' . wp_kses_post( __( 'AUGUSTA SMITH<br>AMBER ANDREWS<br>MARY HAN', 'videomaker' ) ) . '</p>
  27. <!-- /wp:paragraph -->
  28. <!-- wp:spacer {"height":20} -->
  29. <div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>
  30. <!-- /wp:spacer -->
  31. <!-- wp:paragraph {"align":"center","style":{"typography":{"lineHeight":"1.3"}},"fontSize":"medium"} -->
  32. <p class="has-text-align-center has-medium-font-size" style="line-height:1.3">' . esc_html__( 'Directed by', 'videomaker' ) . '</p>
  33. <!-- /wp:paragraph -->
  34. <!-- wp:paragraph {"align":"center","style":{"typography":{"lineHeight":"1.3"}},"fontSize":"large"} -->
  35. <p class="has-text-align-center has-large-font-size" style="line-height:1.3">' . esc_html__( 'MARY HAN', 'videomaker' ) . '</p>
  36. <!-- /wp:paragraph -->
  37. <!-- wp:spacer {"height":50} -->
  38. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  39. <!-- /wp:spacer -->',
  40. );