PluginProbe
Gutenberg / 10.5.4
Gutenberg v10.5.4
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 7.4.0 All 402 releases
gutenberg / lib / block-patterns / large-header-text-button.php

large-header-text-button.php in Gutenberg 10.5.4, at lib/block-patterns/large-header-text-button.php

36 lines 2.4 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 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