| 1 |
<?php |
| 2 |
/** |
| 3 |
* Heading. |
| 4 |
* |
| 5 |
* @package WordPress |
| 6 |
*/ |
| 7 |
|
| 8 |
return array( |
| 9 |
'title' => _x( 'Heading', 'Block pattern title', 'default' ), |
| 10 |
'categories' => array( 'text' ), |
| 11 |
'blockTypes' => array( 'core/heading' ), |
| 12 |
'content' => '<!-- wp:heading {"align":"wide","style":{"typography":{"fontSize":"48px","lineHeight":"1.1"}}} --> |
| 13 |
<h2 class="alignwide" style="font-size:48px;line-height:1.1">' . esc_html__( "We're a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.", 'default' ) . '</h2> |
| 14 |
<!-- /wp:heading -->', |
| 15 |
'description' => _x( 'Heading text', 'Block pattern description', 'default' ), |
| 16 |
); |
| 17 |
|