pattern-grid.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * Pattern: Grid
  4. *
  5. * @package Videomaker
  6. */
  7. return array(
  8. 'title' => __( 'Pattern: Grid', 'videomaker' ),
  9. 'categories' => array( 'videomaker' ),
  10. 'content' => '<!-- wp:columns {"align":"wide"} -->
  11. <div class="wp-block-columns alignwide"><!-- wp:column -->
  12. <div class="wp-block-column"><!-- wp:video {"src":"' . get_stylesheet_directory_uri() . '/assets/videos/digging.mp4","videoPressClassNames":"wp-block-embed is-type-video is-provider-videopress"} -->
  13. <figure class="wp-block-video wp-block-embed is-type-video is-provider-videopress"><video controls src="' . get_stylesheet_directory_uri() . '/assets/videos/digging.mp4"></video></figure>
  14. <!-- /wp:video -->
  15. <!-- wp:heading {"level":4} -->
  16. <h4>' . esc_html__( 'Man Working at Dawn', 'videomaker' ) . '</h4>
  17. <!-- /wp:heading -->
  18. <!-- wp:template-part {"slug":"post-meta","theme":"' . get_stylesheet() . '"} /-->
  19. <!-- wp:video {"src":"' . get_stylesheet_directory_uri() . '/assets/videos/cocktails.mp4","videoPressClassNames":"wp-block-embed is-type-video is-provider-videopress"} -->
  20. <figure class="wp-block-video wp-block-embed is-type-video is-provider-videopress"><video controls src="' . get_stylesheet_directory_uri() . '/assets/videos/cocktails.mp4"></video></figure>
  21. <!-- /wp:video -->
  22. <!-- wp:heading {"level":4} -->
  23. <h4>' . esc_html__( 'The Tale of The Three Cocktails', 'videomaker' ) . '</h4>
  24. <!-- /wp:heading -->
  25. <!-- wp:template-part {"slug":"post-meta","theme":"' . get_stylesheet() . '"} /-->
  26. </div>
  27. <!-- /wp:column -->
  28. <!-- wp:column -->
  29. <div class="wp-block-column"><!-- wp:video {"src":"' . get_stylesheet_directory_uri() . '/assets/videos/boats.mp4","videoPressClassNames":"wp-block-embed is-type-video is-provider-videopress"} -->
  30. <figure class="wp-block-video wp-block-embed is-type-video is-provider-videopress"><video controls src="' . get_stylesheet_directory_uri() . '/assets/videos/boats.mp4"></video></figure>
  31. <!-- /wp:video -->
  32. <!-- wp:heading {"level":4} -->
  33. <h4>' . esc_html__( 'Boats', 'videomaker' ) . '</h4>
  34. <!-- /wp:heading -->
  35. <!-- wp:template-part {"slug":"post-meta","theme":"' . get_stylesheet() . '"} /-->
  36. <!-- wp:video {"src":"' . get_stylesheet_directory_uri() . '/assets/videos/fish.mp4","videoPressClassNames":"wp-block-embed is-type-video is-provider-videopress"} -->
  37. <figure class="wp-block-video wp-block-embed is-type-video is-provider-videopress"><video controls src="' . get_stylesheet_directory_uri() . '/assets/videos/fish.mp4"></video></figure>
  38. <!-- /wp:video -->
  39. <!-- wp:heading {"level":4} -->
  40. <h4>' . esc_html__( 'Plenty of Fish In The Sea', 'videomaker' ) . '</h4>
  41. <!-- /wp:heading -->
  42. <!-- wp:template-part {"slug":"post-meta","theme":"' . get_stylesheet() . '"} /-->
  43. </div>
  44. <!-- /wp:column --></div>
  45. <!-- /wp:columns -->',
  46. );