| 1 |
<?php |
| 2 |
/** |
| 3 |
* Large header with text and a button. |
| 4 |
* |
| 5 |
* @package WordPress |
| 6 |
*/ |
| 7 |
|
| 8 |
return array( |
| 9 |
'title' => _x( 'Large header with text and a button.', 'Block pattern title', 'default' ), |
| 10 |
'categories' => array( 'header' ), |
| 11 |
'content' => '<!-- wp:cover {"url":"https://s.w.org/images/core/5.8/art-01.jpg","id":null,"hasParallax":true,"dimRatio":40,"customOverlayColor":"#000000","minHeight":100,"minHeightUnit":"vh","contentPosition":"center center","align":"full"} --> |
| 12 |
<div class="wp-block-cover alignfull has-background-dim-40 has-background-dim has-parallax" style="background-color:#000000;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg);min-height:100vh"><div class="wp-block-cover__inner-container"><!-- wp:heading {"style":{"typography":{"fontSize":"48px","lineHeight":"1.2"}},"className":"alignwide has-white-color has-text-color"} --> |
| 13 |
<h2 class="alignwide has-white-color has-text-color" style="font-size:48px;line-height:1.2"><strong><em>' . esc_html__( 'Overseas:', 'default' ) . '</em></strong><br><strong><em>' . esc_html__( '1500 — 1960', 'default' ) . '</em></strong></h2> |
| 14 |
<!-- /wp:heading --> |
| 15 |
|
| 16 |
<!-- wp:columns {"align":"wide"} --> |
| 17 |
<div class="wp-block-columns alignwide"><!-- wp:column {"width":"60%"} --> |
| 18 |
<div class="wp-block-column" style="flex-basis:60%"><!-- wp:paragraph {"style":{"color":{"text":"#ffffff"}}} --> |
| 19 |
<p class="has-text-color" style="color:#ffffff">' . wp_kses_post( __( 'An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.', 'default' ) ) . '</p> |
| 20 |
<!-- /wp:paragraph --> |
| 21 |
|
| 22 |
<!-- wp:buttons --> |
| 23 |
<div class="wp-block-buttons"><!-- wp:button {"borderRadius":0,"style":{"color":{"text":"#ffffff","background":"#000000"}},"className":"is-style-outline"} --> |
| 24 |
<div class="wp-block-button is-style-outline"><a class="wp-block-button__link has-text-color has-background no-border-radius" style="background-color:#000000;color:#ffffff">' . esc_html__( 'Visit', 'default' ) . '</a></div> |
| 25 |
<!-- /wp:button --></div> |
| 26 |
<!-- /wp:buttons --></div> |
| 27 |
<!-- /wp:column --> |
| 28 |
|
| 29 |
<!-- wp:column --> |
| 30 |
<div class="wp-block-column"></div> |
| 31 |
<!-- /wp:column --></div> |
| 32 |
<!-- /wp:columns --></div></div> |
| 33 |
<!-- /wp:cover -->', |
| 34 |
'description' => _x( 'Large header with background image and text and button on top', 'Block pattern description', 'default' ), |
| 35 |
); |
| 36 |
|