PluginProbe
Gutenberg / 10.5.3
Gutenberg v10.5.3
24.0.0 23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 All 403 releases
gutenberg / lib / block-patterns / large-header-left.php

large-header-left.php in Gutenberg 10.5.3, at lib/block-patterns/large-header-left.php

34 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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