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 / three-columns-text.php

three-columns-text.php in Gutenberg 10.5.3, at lib/block-patterns/three-columns-text.php

44 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 * Three columns of text.
4 *
5 * @package WordPress
6 */
7
8 return array(
9 'title' => _x( 'Three columns of text', 'Block pattern title', 'default' ),
10 'categories' => array( 'columns', 'text' ),
11 'content' => '<!-- wp:columns {"align":"full","style":{"color":{"text":"#000000","background":"#ffffff"}}} -->
12 <div class="wp-block-columns alignfull has-text-color has-background" style="background-color:#ffffff;color:#000000"><!-- wp:column -->
13 <div class="wp-block-column"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"24px","lineHeight":"1.3"}}} -->
14 <h3 style="font-size:24px;line-height:1.3"><strong><a href="http://wordpress.org">' . esc_html__( 'Virtual Tour ↗', 'default' ) . '</a></strong></h3>
15 <!-- /wp:heading -->
16
17 <!-- wp:paragraph -->
18 <p>' . esc_html__( 'Get a virtual tour of the museum. Ideal for schools and events.', 'default' ) . '</p>
19 <!-- /wp:paragraph --></div>
20 <!-- /wp:column -->
21
22 <!-- wp:column -->
23 <div class="wp-block-column"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"24px","lineHeight":"1.3"}}} -->
24 <h3 style="font-size:24px;line-height:1.3"><strong><a href="https://wordpress.org">' . esc_html__( 'Current Shows ↗', 'default' ) . '</a></strong></h3>
25 <!-- /wp:heading -->
26
27 <!-- wp:paragraph -->
28 <p>' . esc_html__( 'Stay updated and see our current exhibitions here.', 'default' ) . '</p>
29 <!-- /wp:paragraph --></div>
30 <!-- /wp:column -->
31
32 <!-- wp:column -->
33 <div class="wp-block-column"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"24px","lineHeight":"1.3"}}} -->
34 <h3 style="font-size:24px;line-height:1.3"><strong><a href="https://wordpress.org">' . esc_html__( 'Useful Info ↗', 'default' ) . '</a></strong></h3>
35 <!-- /wp:heading -->
36
37 <!-- wp:paragraph -->
38 <p>' . esc_html__( 'Get to know our opening times, ticket prices and discounts.', 'default' ) . '</p>
39 <!-- /wp:paragraph --></div>
40 <!-- /wp:column --></div>
41 <!-- /wp:columns -->',
42 'description' => _x( 'Three columns of text', 'Block pattern description', 'default' ),
43 );
44