| 1 |
<?php |
| 2 |
/** |
| 3 |
* Large header with left-aligned text. |
| 4 |
* |
| 5 |
* @package WordPress |
| 6 |
*/ |
| 7 |
|
| 8 |
return array( |
| 9 |
'title' => _x( 'Large header with left-aligned text', 'Block pattern title', 'default' ), |
| 10 |
'categories' => array( 'header' ), |
| 11 |
'content' => '<!-- wp:cover {"url":"https://s.w.org/images/core/5.8/forest.jpg","id":null,"dimRatio":60,"minHeight":800,"align":"full"} --> |
| 12 |
<div class="wp-block-cover alignfull has-background-dim-60 has-background-dim" style="min-height:800px"><img class="wp-block-cover__image-background " alt="" src="https://s.w.org/images/core/5.8/forest.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container"><!-- wp:heading {"align":"wide","style":{"color":{"text":"#ffe074"},"typography":{"fontSize":"64px"}}} --> |
| 13 |
<h2 class="alignwide has-text-color" style="color:#ffe074;font-size:64px">' . esc_html__( 'Forest.', 'default' ) . '</h2> |
| 14 |
<!-- /wp:heading --> |
| 15 |
|
| 16 |
<!-- wp:columns {"align":"wide"} --> |
| 17 |
<div class="wp-block-columns alignwide"><!-- wp:column {"width":"55%"} --> |
| 18 |
<div class="wp-block-column" style="flex-basis:55%"><!-- wp:spacer {"height":330} --> |
| 19 |
<div style="height:330px" aria-hidden="true" class="wp-block-spacer"></div> |
| 20 |
<!-- /wp:spacer --> |
| 21 |
|
| 22 |
<!-- wp:paragraph {"style":{"color":{"text":"#ffe074"},"typography":{"lineHeight":"1.3","fontSize":"12px"}}} --> |
| 23 |
<p class="has-text-color" style="color:#ffe074;font-size:12px;line-height:1.3"><em>' . esc_html__( 'Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.', 'default' ) . '</em></p> |
| 24 |
<!-- /wp:paragraph --></div> |
| 25 |
<!-- /wp:column --> |
| 26 |
|
| 27 |
<!-- wp:column --> |
| 28 |
<div class="wp-block-column"></div> |
| 29 |
<!-- /wp:column --></div> |
| 30 |
<!-- /wp:columns --></div></div> |
| 31 |
<!-- /wp:cover -->', |
| 32 |
'description' => _x( 'Cover image with quote on top', 'Block pattern description', 'default' ), |
| 33 |
); |
| 34 |
|