diff --git a/src/wp-content/themes/twentytwelve/inc/block-patterns.php b/src/wp-content/themes/twentytwelve/inc/block-patterns.php
index 430b6584aa..930f6c6dbc 100644
a
|
b
|
if ( function_exists( 'register_block_pattern' ) ) { |
67 | 67 | ) |
68 | 68 | ); |
69 | 69 | |
70 | | // Heading and paragraph arranged as a large quote. |
| 70 | //Quote with large paragraph text. |
71 | 71 | register_block_pattern( |
72 | 72 | 'twentytwelve/large-quote', |
73 | 73 | array( |
74 | 74 | 'title' => esc_html__( 'Left-aligned Large Quote', 'twentytwelve' ), |
75 | 75 | 'categories' => array( 'twentytwelve' ), |
76 | 76 | 'viewportWidth' => 700, |
77 | | 'content' => '<!-- wp:paragraph {"style":{"typography":{"fontSize":"40px","lineHeight":1.5}}} --> |
78 | | <p style="font-size:40px;line-height:1.5"><strong><em>' . esc_html__( '"Few people are capable of expressing with equanimity opinions which differ from the prejudices of their social environment. Most people are even incapable of forming such opinions."', 'twentytwelve' ) . '</em></strong></p> |
79 | | <!-- /wp:paragraph --><!-- wp:paragraph --> |
80 | | <p><em>' . esc_html__( 'ΓÇö Albert Einstein', 'twentytwelve' ) . '</em></p> |
81 | | <!-- /wp:paragraph -->', |
| 77 | 'content' => '<!-- wp:quote --> |
| 78 | <blockquote class="wp-block-quote"><!-- wp:paragraph {"style":{"typography":{"fontSize":"40px","lineHeight":1.5}}} --> |
| 79 | <p style="font-size:40px;line-height:1.5"><strong>' . esc_html__( '"Few people are capable of expressing with equanimity opinions which differ from the prejudices of their social environment. Most people are even incapable of forming such opinions."', 'twentytwelve' ) . '</strong></p> |
| 80 | <!-- /wp:paragraph --><cite>' . esc_html__( 'ΓÇö Albert Einstein', 'twentytwelve' ) . '</cite></blockquote> |
| 81 | <!-- /wp:quote -->', |
82 | 82 | ) |
83 | 83 | ); |
84 | 84 | |