12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- /**
- * Pattern: Two posts with excerpt
- *
- * @package Videomaker
- */
- return array(
- 'title' => __( 'Two posts with excerpt', 'videomaker' ),
- 'categories' => array( 'videomaker' ),
- 'content' => '<!-- wp:columns {"align":"wide"} -->
- <div class="wp-block-columns alignwide"><!-- wp:column {"width":"80%"} -->
- <div class="wp-block-column" style="flex-basis:80%">
- <!-- wp:video {"src":"' . get_stylesheet_directory_uri() . '/assets/videos/digging.mp4"} -->
- <figure class="wp-block-video"><video controls src="' . get_stylesheet_directory_uri() . '/assets/videos/digging.mp4"></video></figure>
- <!-- /wp:video -->
- <!-- wp:columns -->
- <div class="wp-block-columns"><!-- wp:column -->
- <div class="wp-block-column">
- <!-- wp:heading {"level":4} -->
- <h4>' . esc_html__( 'Man Working at Dawn', 'videomaker' ) . '</h4>
- <!-- /wp:heading -->
- <!-- wp:template-part {"slug":"post-meta","theme":"' . get_stylesheet() . '"} /-->
- </div>
- <!-- /wp:column -->
- <!-- wp:column -->
- <div class="wp-block-column"><!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.5"}},"fontSize":"small"} -->
- <p class="has-small-font-size" style="line-height:1.5">' . esc_html__( 'As nations under the present system are driven to compete with one another for the markets of the world, so also have the workers to compete with each other—for livelihood.', 'videomaker' ) . '</p>
- <!-- /wp:paragraph --></div>
- <!-- /wp:column --></div>
- <!-- /wp:columns --></div>
- <!-- /wp:column -->
- <!-- wp:column {"width":"33.33%"} -->
- <div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:spacer -->
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
- <!-- /wp:spacer --></div>
- <!-- /wp:column --></div>
- <!-- /wp:columns -->
- <!-- wp:spacer -->
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
- <!-- /wp:spacer -->
- <!-- wp:columns {"align":"wide"} -->
- <div class="wp-block-columns alignwide"><!-- wp:column {"width":"20%"} -->
- <div class="wp-block-column" style="flex-basis:20%"><!-- wp:spacer -->
- <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
- <!-- /wp:spacer --></div>
- <!-- /wp:column -->
- <!-- wp:column {"width":"80%"} -->
- <div class="wp-block-column" style="flex-basis:80%">
- <!-- wp:video {"src":"' . get_stylesheet_directory_uri() . '/assets/videos/boats.mp4"} -->
- <figure class="wp-block-video"><video controls src="' . get_stylesheet_directory_uri() . '/assets/videos/boats.mp4"></video></figure>
- <!-- /wp:video -->
- <!-- wp:columns -->
- <div class="wp-block-columns"><!-- wp:column -->
- <div class="wp-block-column">
- <!-- wp:heading {"level":4} -->
- <h4>' . esc_html__( 'Boats', 'videomaker' ) . '</h4>
- <!-- /wp:heading -->
- <!-- wp:template-part {"slug":"post-meta","theme":"' . get_stylesheet() . '"} /-->
- </div>
- <!-- /wp:column -->
- <!-- wp:column -->
- <div class="wp-block-column"><!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.5"}},"fontSize":"small"} -->
- <p class="has-small-font-size" style="line-height:1.5">' . esc_html__( 'As nations under the present system are driven to compete with one another for the markets of the world, so also have the workers to compete with each other—for livelihood.', 'videomaker' ) . '</p>
- <!-- /wp:paragraph --></div>
- <!-- /wp:column --></div>
- <!-- /wp:columns --></div>
- <!-- /wp:column --></div>
- <!-- /wp:columns -->',
- );
|