From 2d6a50c50d506832f446e4275428bb297ef9e432 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Mon, 23 Nov 2020 14:31:49 +0000 Subject: [PATCH 1/4] Adds in viewports or adjusts them for block patterns --- lib/patterns/heading-paragraph.php | 2 +- lib/patterns/large-header-button.php | 2 +- lib/patterns/large-header.php | 2 +- lib/patterns/text-three-columns-buttons.php | 2 +- lib/patterns/text-two-columns-with-images.php | 1 + lib/patterns/text-two-columns.php | 1 + lib/patterns/two-images.php | 1 + 7 files changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/patterns/heading-paragraph.php b/lib/patterns/heading-paragraph.php index 9a8b160a78772..123675cb339a6 100644 --- a/lib/patterns/heading-paragraph.php +++ b/lib/patterns/heading-paragraph.php @@ -8,7 +8,7 @@ return array( 'title' => __( 'Heading and paragraph', 'gutenberg' ), 'content' => "\n
\n

2.
" . __( 'Which treats of the first sally the ingenious Don Quixote made from home', 'gutenberg' ) . "

\n\n\n\n

" . __( 'These preliminaries settled, he did not care to put off any longer the execution of his design, urged on to it by the thought of all the world was losing by his delay, seeing what wrongs he intended to right, grievances to redress, injustices to repair, abuses to remove, and duties to discharge.', 'gutenberg' ) . "

\n
\n", - 'viewportWidth' => 1000, + 'viewportWidth' => 1200, 'categories' => array( 'text' ), 'description' => _x( 'A heading preceded by a chapter number, and followed by a paragraph.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/large-header-button.php b/lib/patterns/large-header-button.php index 1d71e5703f5b5..4268bfffe363a 100644 --- a/lib/patterns/large-header-button.php +++ b/lib/patterns/large-header-button.php @@ -8,7 +8,7 @@ return array( 'title' => __( 'Large header with a heading and a button ', 'gutenberg' ), 'content' => "\n
\n
\n
\n
\n
\n\n\n\n
\n
\n\n\n\n

" . __( 'Thou hast seen', 'gutenberg' ) . '
' . __( 'nothing yet', 'gutenberg' ) . "

\n\n\n\n\n\n\n\n
\n
\n\n\n\n
\n
\n
\n
\n
\n", - 'viewportWidth' => 1000, + 'viewportWidth' => 1200, 'categories' => array( 'header' ), 'description' => _x( 'A large hero section with a bright gradient background, a big heading and a filled button.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/large-header.php b/lib/patterns/large-header.php index 0213bf8bfeb72..992fcbb378958 100644 --- a/lib/patterns/large-header.php +++ b/lib/patterns/large-header.php @@ -8,7 +8,7 @@ return array( 'title' => __( 'Large header with a heading', 'gutenberg' ), 'content' => "\n
\n

" . __( 'Don Quixote', 'gutenberg' ) . "

\n
\n", - 'viewportWidth' => 1000, + 'viewportWidth' => 1200, 'categories' => array( 'header' ), 'description' => _x( 'A large hero section with an example background image and a heading in the center.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/text-three-columns-buttons.php b/lib/patterns/text-three-columns-buttons.php index 629c839b89bb8..12607aa9e1ba5 100644 --- a/lib/patterns/text-three-columns-buttons.php +++ b/lib/patterns/text-three-columns-buttons.php @@ -9,6 +9,6 @@ 'title' => __( 'Three columns of text with buttons', 'gutenberg' ), 'categories' => array( 'columns' ), 'content' => "\n
\n
\n
\n

" . __( 'Which treats of the character and pursuits of the famous Don Quixote of La Mancha.', 'gutenberg' ) . "

\n\n\n\n\n
\n\n\n\n
\n

" . __( 'Which treats of the first sally the ingenious Don Quixote made from home.', 'gutenberg' ) . "

\n\n\n\n\n
\n\n\n\n
\n

" . __( 'Wherein is related the droll way in which Don Quixote had himself dubbed a knight.', 'gutenberg' ) . "

\n\n\n\n\n
\n
\n
\n", - 'viewportWidth' => 1000, + 'viewportWidth' => 1200, 'description' => _x( 'Three small columns of text, each with an outlined button with rounded corners at the bottom.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/text-two-columns-with-images.php b/lib/patterns/text-two-columns-with-images.php index c4978acbc371e..6033a83b7d322 100644 --- a/lib/patterns/text-two-columns-with-images.php +++ b/lib/patterns/text-two-columns-with-images.php @@ -8,6 +8,7 @@ return array( 'title' => __( 'Two columns of text with images', 'gutenberg' ), 'categories' => array( 'columns' ), + 'viewportWidth' => 1200, 'content' => "\n
\n
\n
\n
\"\"/
\n\n\n\n

" . __( 'They must know, then, that the above-named gentleman whenever he was at leisure (which was mostly all the year round) gave himself up to reading books of chivalry with such ardour and avidity that he almost entirely neglected the pursuit of his field-sports, and even the management of his property; and to such a pitch did his eagerness and infatuation go that he sold many an acre of tillageland to buy books of chivalry to read, and brought home as many of them as he could get.', 'gutenberg' ) . "

\n
\n\n\n\n
\n
\"\"/
\n\n\n\n

" . __( 'But of all there were none he liked so well as those of the famous Feliciano de Silva\'s composition, for their lucidity of style and complicated conceits were as pearls in his sight, particularly when in his reading he came upon courtships and cartels, where he often found passages like "the reason of the unreason with which my reason is afflicted so weakens my reason that with reason I murmur at your beauty;" or again, "the high heavens render you deserving of the desert your greatness deserves."', 'gutenberg' ) . "

\n
\n
\n
\n", 'description' => _x( 'Two columns of text, each with an image on top.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/text-two-columns.php b/lib/patterns/text-two-columns.php index ca40c74289a0a..52d0095d7796a 100644 --- a/lib/patterns/text-two-columns.php +++ b/lib/patterns/text-two-columns.php @@ -8,6 +8,7 @@ return array( 'title' => __( 'Two columns of text', 'gutenberg' ), 'categories' => array( 'columns' ), + 'viewportWidth' => 1200, 'content' => "\n
\n

" . __( 'Which treats of the character and pursuits of the famous gentleman Don Quixote of La Mancha', 'gutenberg' ) . "

\n\n\n\n
\n
\n

" . __( 'In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing. An olla of rather more beef than mutton, a salad on most nights, scraps on Saturdays, lentils on Fridays, and a pigeon or so extra on Sundays, made away with three-quarters of his income.', 'gutenberg' ) . "

\n
\n\n\n\n
\n

" . __( 'The rest of it went in a doublet of fine cloth and velvet breeches and shoes to match for holidays, while on week-days he made a brave figure in his best homespun. He had in his house a housekeeper past forty, a niece under twenty, and a lad for the field and market-place, who used to saddle the hack as well as handle the bill-hook. The age of this gentleman of ours was bordering on fifty; he was of a hardy habit, spare, gaunt-featured, a very early riser and a great sportsman.', 'gutenberg' ) . "

\n
\n
\n
\n", 'description' => _x( 'Two columns of text preceded by a long heading.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/two-images.php b/lib/patterns/two-images.php index 6b71853f3f970..25347f6c2110d 100644 --- a/lib/patterns/two-images.php +++ b/lib/patterns/two-images.php @@ -8,6 +8,7 @@ return array( 'title' => __( 'Two images side by side', 'gutenberg' ), 'categories' => array( 'gallery' ), + 'viewportWidth' => 1200, 'description' => _x( 'An image gallery with two example images.', 'Block pattern description', 'gutenberg' ), 'content' => "\n\n", ); From 6690a78a40dee9ada5c6c6c54288e73fcc1dceb3 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Tue, 24 Nov 2020 14:53:25 +0000 Subject: [PATCH 2/4] Increases default of viewportWidth --- lib/patterns/heading-paragraph.php | 1 - lib/patterns/large-header-button.php | 1 - lib/patterns/large-header.php | 1 - lib/patterns/text-three-columns-buttons.php | 1 - lib/patterns/text-two-columns-with-images.php | 2 +- lib/patterns/text-two-columns.php | 1 - lib/patterns/two-images.php | 1 - packages/block-editor/src/components/block-preview/index.js | 2 +- 8 files changed, 2 insertions(+), 8 deletions(-) diff --git a/lib/patterns/heading-paragraph.php b/lib/patterns/heading-paragraph.php index 123675cb339a6..d06caa1d8cc2c 100644 --- a/lib/patterns/heading-paragraph.php +++ b/lib/patterns/heading-paragraph.php @@ -8,7 +8,6 @@ return array( 'title' => __( 'Heading and paragraph', 'gutenberg' ), 'content' => "\n
\n

2.
" . __( 'Which treats of the first sally the ingenious Don Quixote made from home', 'gutenberg' ) . "

\n\n\n\n

" . __( 'These preliminaries settled, he did not care to put off any longer the execution of his design, urged on to it by the thought of all the world was losing by his delay, seeing what wrongs he intended to right, grievances to redress, injustices to repair, abuses to remove, and duties to discharge.', 'gutenberg' ) . "

\n
\n", - 'viewportWidth' => 1200, 'categories' => array( 'text' ), 'description' => _x( 'A heading preceded by a chapter number, and followed by a paragraph.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/large-header-button.php b/lib/patterns/large-header-button.php index 4268bfffe363a..b834c896916ea 100644 --- a/lib/patterns/large-header-button.php +++ b/lib/patterns/large-header-button.php @@ -8,7 +8,6 @@ return array( 'title' => __( 'Large header with a heading and a button ', 'gutenberg' ), 'content' => "\n
\n
\n
\n
\n
\n\n\n\n
\n
\n\n\n\n

" . __( 'Thou hast seen', 'gutenberg' ) . '
' . __( 'nothing yet', 'gutenberg' ) . "

\n\n\n\n\n\n\n\n
\n
\n\n\n\n
\n
\n
\n
\n
\n", - 'viewportWidth' => 1200, 'categories' => array( 'header' ), 'description' => _x( 'A large hero section with a bright gradient background, a big heading and a filled button.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/large-header.php b/lib/patterns/large-header.php index 992fcbb378958..f9e4738b8dedb 100644 --- a/lib/patterns/large-header.php +++ b/lib/patterns/large-header.php @@ -8,7 +8,6 @@ return array( 'title' => __( 'Large header with a heading', 'gutenberg' ), 'content' => "\n
\n

" . __( 'Don Quixote', 'gutenberg' ) . "

\n
\n", - 'viewportWidth' => 1200, 'categories' => array( 'header' ), 'description' => _x( 'A large hero section with an example background image and a heading in the center.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/text-three-columns-buttons.php b/lib/patterns/text-three-columns-buttons.php index 12607aa9e1ba5..f6a2be81a0ae1 100644 --- a/lib/patterns/text-three-columns-buttons.php +++ b/lib/patterns/text-three-columns-buttons.php @@ -9,6 +9,5 @@ 'title' => __( 'Three columns of text with buttons', 'gutenberg' ), 'categories' => array( 'columns' ), 'content' => "\n
\n
\n
\n

" . __( 'Which treats of the character and pursuits of the famous Don Quixote of La Mancha.', 'gutenberg' ) . "

\n\n\n\n\n
\n\n\n\n
\n

" . __( 'Which treats of the first sally the ingenious Don Quixote made from home.', 'gutenberg' ) . "

\n\n\n\n\n
\n\n\n\n
\n

" . __( 'Wherein is related the droll way in which Don Quixote had himself dubbed a knight.', 'gutenberg' ) . "

\n\n\n\n\n
\n
\n
\n", - 'viewportWidth' => 1200, 'description' => _x( 'Three small columns of text, each with an outlined button with rounded corners at the bottom.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/text-two-columns-with-images.php b/lib/patterns/text-two-columns-with-images.php index 6033a83b7d322..f29cf96e64117 100644 --- a/lib/patterns/text-two-columns-with-images.php +++ b/lib/patterns/text-two-columns-with-images.php @@ -7,7 +7,7 @@ return array( 'title' => __( 'Two columns of text with images', 'gutenberg' ), - 'categories' => array( 'columns' ), + 'categories' => array( 'columns' ), 'viewportWidth' => 1200, 'content' => "\n
\n
\n
\n
\"\"/
\n\n\n\n

" . __( 'They must know, then, that the above-named gentleman whenever he was at leisure (which was mostly all the year round) gave himself up to reading books of chivalry with such ardour and avidity that he almost entirely neglected the pursuit of his field-sports, and even the management of his property; and to such a pitch did his eagerness and infatuation go that he sold many an acre of tillageland to buy books of chivalry to read, and brought home as many of them as he could get.', 'gutenberg' ) . "

\n
\n\n\n\n
\n
\"\"/
\n\n\n\n

" . __( 'But of all there were none he liked so well as those of the famous Feliciano de Silva\'s composition, for their lucidity of style and complicated conceits were as pearls in his sight, particularly when in his reading he came upon courtships and cartels, where he often found passages like "the reason of the unreason with which my reason is afflicted so weakens my reason that with reason I murmur at your beauty;" or again, "the high heavens render you deserving of the desert your greatness deserves."', 'gutenberg' ) . "

\n
\n
\n
\n", 'description' => _x( 'Two columns of text, each with an image on top.', 'Block pattern description', 'gutenberg' ), diff --git a/lib/patterns/text-two-columns.php b/lib/patterns/text-two-columns.php index 52d0095d7796a..ca40c74289a0a 100644 --- a/lib/patterns/text-two-columns.php +++ b/lib/patterns/text-two-columns.php @@ -8,7 +8,6 @@ return array( 'title' => __( 'Two columns of text', 'gutenberg' ), 'categories' => array( 'columns' ), - 'viewportWidth' => 1200, 'content' => "\n
\n

" . __( 'Which treats of the character and pursuits of the famous gentleman Don Quixote of La Mancha', 'gutenberg' ) . "

\n\n\n\n
\n
\n

" . __( 'In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing. An olla of rather more beef than mutton, a salad on most nights, scraps on Saturdays, lentils on Fridays, and a pigeon or so extra on Sundays, made away with three-quarters of his income.', 'gutenberg' ) . "

\n
\n\n\n\n
\n

" . __( 'The rest of it went in a doublet of fine cloth and velvet breeches and shoes to match for holidays, while on week-days he made a brave figure in his best homespun. He had in his house a housekeeper past forty, a niece under twenty, and a lad for the field and market-place, who used to saddle the hack as well as handle the bill-hook. The age of this gentleman of ours was bordering on fifty; he was of a hardy habit, spare, gaunt-featured, a very early riser and a great sportsman.', 'gutenberg' ) . "

\n
\n
\n
\n", 'description' => _x( 'Two columns of text preceded by a long heading.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/two-images.php b/lib/patterns/two-images.php index 25347f6c2110d..6b71853f3f970 100644 --- a/lib/patterns/two-images.php +++ b/lib/patterns/two-images.php @@ -8,7 +8,6 @@ return array( 'title' => __( 'Two images side by side', 'gutenberg' ), 'categories' => array( 'gallery' ), - 'viewportWidth' => 1200, 'description' => _x( 'An image gallery with two example images.', 'Block pattern description', 'gutenberg' ), 'content' => "\n\n", ); diff --git a/packages/block-editor/src/components/block-preview/index.js b/packages/block-editor/src/components/block-preview/index.js index 5727d969f34f1..6978d003b8ebd 100644 --- a/packages/block-editor/src/components/block-preview/index.js +++ b/packages/block-editor/src/components/block-preview/index.js @@ -19,7 +19,7 @@ import AutoHeightBlockPreview from './auto'; export function BlockPreview( { blocks, __experimentalPadding = 0, - viewportWidth = 700, + viewportWidth = 1200, __experimentalLive = false, __experimentalOnClick, } ) { From ff8d353b2dae29c1ade2f2fa1c8a3e20a5d3d679 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Tue, 24 Nov 2020 15:53:45 +0000 Subject: [PATCH 3/4] Catch variable missing --- lib/patterns/text-two-columns-with-images.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/patterns/text-two-columns-with-images.php b/lib/patterns/text-two-columns-with-images.php index f29cf96e64117..1809d04a0a439 100644 --- a/lib/patterns/text-two-columns-with-images.php +++ b/lib/patterns/text-two-columns-with-images.php @@ -8,7 +8,6 @@ return array( 'title' => __( 'Two columns of text with images', 'gutenberg' ), 'categories' => array( 'columns' ), - 'viewportWidth' => 1200, 'content' => "\n
\n
\n
\n
\"\"/
\n\n\n\n

" . __( 'They must know, then, that the above-named gentleman whenever he was at leisure (which was mostly all the year round) gave himself up to reading books of chivalry with such ardour and avidity that he almost entirely neglected the pursuit of his field-sports, and even the management of his property; and to such a pitch did his eagerness and infatuation go that he sold many an acre of tillageland to buy books of chivalry to read, and brought home as many of them as he could get.', 'gutenberg' ) . "

\n
\n\n\n\n
\n
\"\"/
\n\n\n\n

" . __( 'But of all there were none he liked so well as those of the famous Feliciano de Silva\'s composition, for their lucidity of style and complicated conceits were as pearls in his sight, particularly when in his reading he came upon courtships and cartels, where he often found passages like "the reason of the unreason with which my reason is afflicted so weakens my reason that with reason I murmur at your beauty;" or again, "the high heavens render you deserving of the desert your greatness deserves."', 'gutenberg' ) . "

\n
\n
\n
\n", 'description' => _x( 'Two columns of text, each with an image on top.', 'Block pattern description', 'gutenberg' ), ); From 09913d1b6ea42d5388f8cddfbb4a08fe9a6a68a0 Mon Sep 17 00:00:00 2001 From: Jon Q Date: Wed, 25 Nov 2020 11:40:05 -0500 Subject: [PATCH 4/4] Remove spaces/whitespaces in PHP files --- lib/patterns/large-header-button.php | 8 ++++---- lib/patterns/large-header.php | 8 ++++---- lib/patterns/text-three-columns-buttons.php | 8 ++++---- lib/patterns/text-two-columns-with-images.php | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/lib/patterns/large-header-button.php b/lib/patterns/large-header-button.php index b834c896916ea..bed0ce49062d5 100644 --- a/lib/patterns/large-header-button.php +++ b/lib/patterns/large-header-button.php @@ -6,8 +6,8 @@ */ return array( - 'title' => __( 'Large header with a heading and a button ', 'gutenberg' ), - 'content' => "\n
\n
\n
\n
\n
\n\n\n\n
\n
\n\n\n\n

" . __( 'Thou hast seen', 'gutenberg' ) . '
' . __( 'nothing yet', 'gutenberg' ) . "

\n\n\n\n\n\n\n\n
\n
\n\n\n\n
\n
\n
\n
\n
\n", - 'categories' => array( 'header' ), - 'description' => _x( 'A large hero section with a bright gradient background, a big heading and a filled button.', 'Block pattern description', 'gutenberg' ), + 'title' => __( 'Large header with a heading and a button ', 'gutenberg' ), + 'content' => "\n
\n
\n
\n
\n
\n\n\n\n
\n
\n\n\n\n

" . __( 'Thou hast seen', 'gutenberg' ) . '
' . __( 'nothing yet', 'gutenberg' ) . "

\n\n\n\n\n\n\n\n
\n
\n\n\n\n
\n
\n
\n
\n
\n", + 'categories' => array( 'header' ), + 'description' => _x( 'A large hero section with a bright gradient background, a big heading and a filled button.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/large-header.php b/lib/patterns/large-header.php index f9e4738b8dedb..0583e1e6a03b2 100644 --- a/lib/patterns/large-header.php +++ b/lib/patterns/large-header.php @@ -6,8 +6,8 @@ */ return array( - 'title' => __( 'Large header with a heading', 'gutenberg' ), - 'content' => "\n
\n

" . __( 'Don Quixote', 'gutenberg' ) . "

\n
\n", - 'categories' => array( 'header' ), - 'description' => _x( 'A large hero section with an example background image and a heading in the center.', 'Block pattern description', 'gutenberg' ), + 'title' => __( 'Large header with a heading', 'gutenberg' ), + 'content' => "\n
\n

" . __( 'Don Quixote', 'gutenberg' ) . "

\n
\n", + 'categories' => array( 'header' ), + 'description' => _x( 'A large hero section with an example background image and a heading in the center.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/text-three-columns-buttons.php b/lib/patterns/text-three-columns-buttons.php index f6a2be81a0ae1..8386be74b9c5b 100644 --- a/lib/patterns/text-three-columns-buttons.php +++ b/lib/patterns/text-three-columns-buttons.php @@ -6,8 +6,8 @@ */ return array( - 'title' => __( 'Three columns of text with buttons', 'gutenberg' ), - 'categories' => array( 'columns' ), - 'content' => "\n
\n
\n
\n

" . __( 'Which treats of the character and pursuits of the famous Don Quixote of La Mancha.', 'gutenberg' ) . "

\n\n\n\n\n
\n\n\n\n
\n

" . __( 'Which treats of the first sally the ingenious Don Quixote made from home.', 'gutenberg' ) . "

\n\n\n\n\n
\n\n\n\n
\n

" . __( 'Wherein is related the droll way in which Don Quixote had himself dubbed a knight.', 'gutenberg' ) . "

\n\n\n\n\n
\n
\n
\n", - 'description' => _x( 'Three small columns of text, each with an outlined button with rounded corners at the bottom.', 'Block pattern description', 'gutenberg' ), + 'title' => __( 'Three columns of text with buttons', 'gutenberg' ), + 'categories' => array( 'columns' ), + 'content' => "\n
\n
\n
\n

" . __( 'Which treats of the character and pursuits of the famous Don Quixote of La Mancha.', 'gutenberg' ) . "

\n\n\n\n\n
\n\n\n\n
\n

" . __( 'Which treats of the first sally the ingenious Don Quixote made from home.', 'gutenberg' ) . "

\n\n\n\n\n
\n\n\n\n
\n

" . __( 'Wherein is related the droll way in which Don Quixote had himself dubbed a knight.', 'gutenberg' ) . "

\n\n\n\n\n
\n
\n
\n", + 'description' => _x( 'Three small columns of text, each with an outlined button with rounded corners at the bottom.', 'Block pattern description', 'gutenberg' ), ); diff --git a/lib/patterns/text-two-columns-with-images.php b/lib/patterns/text-two-columns-with-images.php index 1809d04a0a439..c4978acbc371e 100644 --- a/lib/patterns/text-two-columns-with-images.php +++ b/lib/patterns/text-two-columns-with-images.php @@ -7,7 +7,7 @@ return array( 'title' => __( 'Two columns of text with images', 'gutenberg' ), - 'categories' => array( 'columns' ), + 'categories' => array( 'columns' ), 'content' => "\n
\n
\n
\n
\"\"/
\n\n\n\n

" . __( 'They must know, then, that the above-named gentleman whenever he was at leisure (which was mostly all the year round) gave himself up to reading books of chivalry with such ardour and avidity that he almost entirely neglected the pursuit of his field-sports, and even the management of his property; and to such a pitch did his eagerness and infatuation go that he sold many an acre of tillageland to buy books of chivalry to read, and brought home as many of them as he could get.', 'gutenberg' ) . "

\n
\n\n\n\n
\n
\"\"/
\n\n\n\n

" . __( 'But of all there were none he liked so well as those of the famous Feliciano de Silva\'s composition, for their lucidity of style and complicated conceits were as pearls in his sight, particularly when in his reading he came upon courtships and cartels, where he often found passages like "the reason of the unreason with which my reason is afflicted so weakens my reason that with reason I murmur at your beauty;" or again, "the high heavens render you deserving of the desert your greatness deserves."', 'gutenberg' ) . "

\n
\n
\n
\n", 'description' => _x( 'Two columns of text, each with an image on top.', 'Block pattern description', 'gutenberg' ), );