| 1 |
<?php |
| 2 |
/** |
| 3 |
* Three columns of text. |
| 4 |
* |
| 5 |
* @package WordPress |
| 6 |
*/ |
| 7 |
|
| 8 |
return array( |
| 9 |
'title' => _x( 'Three columns of text', 'Block pattern title', 'default' ), |
| 10 |
'categories' => array( 'columns', 'text' ), |
| 11 |
'content' => '<!-- wp:columns {"align":"full","style":{"color":{"text":"#000000","background":"#ffffff"}}} --> |
| 12 |
<div class="wp-block-columns alignfull has-text-color has-background" style="background-color:#ffffff;color:#000000"><!-- wp:column --> |
| 13 |
<div class="wp-block-column"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"24px","lineHeight":"1.3"}}} --> |
| 14 |
<h3 style="font-size:24px;line-height:1.3"><strong><a href="http://wordpress.org">' . esc_html__( 'Virtual Tour ↗', 'default' ) . '</a></strong></h3> |
| 15 |
<!-- /wp:heading --> |
| 16 |
|
| 17 |
<!-- wp:paragraph --> |
| 18 |
<p>' . esc_html__( 'Get a virtual tour of the museum. Ideal for schools and events.', 'default' ) . '</p> |
| 19 |
<!-- /wp:paragraph --></div> |
| 20 |
<!-- /wp:column --> |
| 21 |
|
| 22 |
<!-- wp:column --> |
| 23 |
<div class="wp-block-column"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"24px","lineHeight":"1.3"}}} --> |
| 24 |
<h3 style="font-size:24px;line-height:1.3"><strong><a href="https://wordpress.org">' . esc_html__( 'Current Shows ↗', 'default' ) . '</a></strong></h3> |
| 25 |
<!-- /wp:heading --> |
| 26 |
|
| 27 |
<!-- wp:paragraph --> |
| 28 |
<p>' . esc_html__( 'Stay updated and see our current exhibitions here.', 'default' ) . '</p> |
| 29 |
<!-- /wp:paragraph --></div> |
| 30 |
<!-- /wp:column --> |
| 31 |
|
| 32 |
<!-- wp:column --> |
| 33 |
<div class="wp-block-column"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"24px","lineHeight":"1.3"}}} --> |
| 34 |
<h3 style="font-size:24px;line-height:1.3"><strong><a href="https://wordpress.org">' . esc_html__( 'Useful Info ↗', 'default' ) . '</a></strong></h3> |
| 35 |
<!-- /wp:heading --> |
| 36 |
|
| 37 |
<!-- wp:paragraph --> |
| 38 |
<p>' . esc_html__( 'Get to know our opening times, ticket prices and discounts.', 'default' ) . '</p> |
| 39 |
<!-- /wp:paragraph --></div> |
| 40 |
<!-- /wp:column --></div> |
| 41 |
<!-- /wp:columns -->', |
| 42 |
'description' => _x( 'Three columns of text', 'Block pattern description', 'default' ), |
| 43 |
); |
| 44 |
|