2020-07-06 12:50:02 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2021-04-28 12:38:05 +02:00
|
|
|
* Two columns of text.
|
2020-07-06 12:50:02 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
|
|
|
return array(
|
2021-04-28 12:38:05 +02:00
|
|
|
'title' => _x( 'Two columns of text', 'Block pattern title' ),
|
|
|
|
'categories' => array( 'columns', 'text' ),
|
|
|
|
'content' => '<!-- wp:columns {"align":"full"} -->
|
|
|
|
<div class="wp-block-columns"><!-- wp:column -->
|
|
|
|
<div class="wp-block-column"><!-- wp:spacer -->
|
|
|
|
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
|
|
|
|
<!-- /wp:spacer -->
|
|
|
|
<!-- wp:paragraph {"style":{"typography":{"fontSize":"21px"}, "color":{"text":"#000000"}}} -->
|
|
|
|
<p class="has-text-color" style="font-size:21px;color:#000000;"><strong>' . esc_html__( 'We have worked with:' ) . '</strong></p>
|
|
|
|
<!-- /wp:paragraph -->
|
|
|
|
|
|
|
|
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","lineHeight":"1.2"}}} -->
|
|
|
|
<p style="font-size:24px;line-height:1.2"><a href="https://wordpress.org">' . wp_kses_post( __( 'EARTHFUND™<br>ARCHWEEKLY<br>FUTURE ROADS<br>BUILDING NY' ) ) . '</a></p>
|
|
|
|
<!-- /wp:paragraph -->
|
|
|
|
|
|
|
|
<!-- wp:spacer -->
|
|
|
|
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
|
|
|
|
<!-- /wp:spacer --></div>
|
|
|
|
<!-- /wp:column -->
|
|
|
|
|
|
|
|
<!-- wp:column -->
|
|
|
|
<div class="wp-block-column"><!-- wp:spacer {"height":160} -->
|
|
|
|
<div style="height:160px" aria-hidden="true" class="wp-block-spacer"></div>
|
|
|
|
<!-- /wp:spacer -->
|
|
|
|
|
|
|
|
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","lineHeight":"1.2"}}} -->
|
|
|
|
<p style="font-size:24px;line-height:1.2"><a href="https://wordpress.org">' . wp_kses_post( __( 'DUBAI ROOFS<br>MAY WATSON STUDIO<br>Y.O.L<br>RUDIMENTAR' ) ) . '</a></p>
|
|
|
|
<!-- /wp:paragraph -->
|
|
|
|
|
|
|
|
<!-- wp:spacer -->
|
|
|
|
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
|
|
|
|
<!-- /wp:spacer --></div>
|
|
|
|
<!-- /wp:column --></div>
|
|
|
|
<!-- /wp:columns -->',
|
|
|
|
'description' => _x( 'Two columns of text', 'Block pattern description' ),
|
2020-07-06 12:50:02 +02:00
|
|
|
);
|