| 1 |
<?php |
| 2 |
/** |
| 3 |
* Header: Centered header. |
| 4 |
* |
| 5 |
* @package WordPress |
| 6 |
*/ |
| 7 |
|
| 8 |
return array( |
| 9 |
'title' => _x( 'Centered header', 'Block pattern title', 'gutenberg' ), |
| 10 |
'blockTypes' => array( 'core/template-part/header' ), |
| 11 |
'categories' => array( 'header' ), |
| 12 |
'content' => '<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"2em","bottom":"4em"}}}} --> |
| 13 |
<div class="wp-block-group alignfull" style="padding-top:2em;padding-bottom:4em"><!-- wp:site-logo {"align":"center"} /--> |
| 14 |
|
| 15 |
<!-- wp:site-title {"textAlign":"center","fontSize":"large"} /--> |
| 16 |
|
| 17 |
<!-- wp:navigation {"layout":{"type":"flex","justifyContent":"center"}} /--></div> |
| 18 |
<!-- /wp:group -->', |
| 19 |
); |
| 20 |
|