2023-04-24 08:15:55 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Title: Testimonials 3 Columns
|
|
|
|
* Slug: woocommerce-blocks/testimonials-3-columns
|
|
|
|
* Categories: WooCommerce
|
|
|
|
*/
|
2023-09-25 09:48:52 +00:00
|
|
|
|
|
|
|
use Automattic\WooCommerce\Blocks\Patterns\PatternsHelper;
|
2023-10-06 10:42:51 +00:00
|
|
|
|
2023-09-25 09:48:52 +00:00
|
|
|
$content = PatternsHelper::get_pattern_content( 'woocommerce-blocks/testimonials-3-columns' );
|
2023-10-06 10:42:51 +00:00
|
|
|
|
|
|
|
$main_header = $content['titles'][0]['default'] ?? '';
|
|
|
|
$first_title = $content['titles'][1]['default'] ?? '';
|
|
|
|
$second_title = $content['titles'][2]['default'] ?? '';
|
|
|
|
$third_title = $content['titles'][3]['default'] ?? '';
|
|
|
|
$first_description = $content['descriptions'][0]['default'] ?? '';
|
|
|
|
$second_description = $content['descriptions'][1]['default'] ?? '';
|
|
|
|
$third_description = $content['descriptions'][2]['default'] ?? '';
|
2023-04-24 08:15:55 +00:00
|
|
|
?>
|
2023-10-05 15:44:14 +00:00
|
|
|
<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
|
|
|
<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30)">
|
|
|
|
<!-- wp:heading {"level":3,"style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30"}}}} -->
|
2023-10-06 10:42:51 +00:00
|
|
|
<h3 class="wp-block-heading" style="padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><?php echo esc_html( $main_header ); ?></h3>
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- /wp:heading -->
|
2023-04-24 08:15:55 +00:00
|
|
|
|
2023-10-05 15:44:14 +00:00
|
|
|
<!-- wp:columns {"align":"full","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30"}}}} -->
|
|
|
|
<div class="wp-block-columns alignfull" style="padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)">
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- wp:column -->
|
|
|
|
<div class="wp-block-column">
|
|
|
|
<!-- wp:paragraph -->
|
2023-10-06 10:42:51 +00:00
|
|
|
<p><strong><?php echo esc_html( $first_title ); ?></strong></p>
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- /wp:paragraph -->
|
2023-07-19 11:24:21 +00:00
|
|
|
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- wp:paragraph -->
|
2023-10-06 10:42:51 +00:00
|
|
|
<p><?php echo esc_html( $first_description ); ?></p>
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- /wp:paragraph -->
|
2023-04-24 08:15:55 +00:00
|
|
|
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- wp:paragraph -->
|
|
|
|
<p>~ Tanner P.</p>
|
|
|
|
<!-- /wp:paragraph -->
|
|
|
|
</div>
|
|
|
|
<!-- /wp:column -->
|
2023-04-24 08:15:55 +00:00
|
|
|
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- wp:column -->
|
|
|
|
<div class="wp-block-column">
|
|
|
|
<!-- wp:paragraph -->
|
|
|
|
|
2023-10-06 10:42:51 +00:00
|
|
|
<p><strong><?php echo esc_html( $second_title ); ?></strong></p>
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- /wp:paragraph -->
|
|
|
|
|
|
|
|
<!-- wp:paragraph -->
|
2023-10-06 10:42:51 +00:00
|
|
|
<p><?php echo esc_html( $second_description ); ?></p>
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- /wp:paragraph -->
|
|
|
|
|
|
|
|
<!-- wp:paragraph -->
|
|
|
|
<p>~ Abigail N.</p>
|
|
|
|
<!-- /wp:paragraph -->
|
|
|
|
</div>
|
|
|
|
<!-- /wp:column -->
|
2023-04-24 08:15:55 +00:00
|
|
|
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- wp:column -->
|
|
|
|
<div class="wp-block-column">
|
|
|
|
<!-- wp:paragraph -->
|
2023-10-06 10:42:51 +00:00
|
|
|
<p><strong><?php echo esc_html( $third_title ); ?></strong></p>
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- /wp:paragraph -->
|
2023-04-24 08:15:55 +00:00
|
|
|
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- wp:paragraph -->
|
2023-10-06 10:42:51 +00:00
|
|
|
<p><?php echo esc_html( $third_description ); ?></p>
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- /wp:paragraph -->
|
2023-04-24 08:15:55 +00:00
|
|
|
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- wp:paragraph -->
|
|
|
|
<p>~ Albert L.</p>
|
|
|
|
<!-- /wp:paragraph -->
|
|
|
|
</div>
|
|
|
|
<!-- /wp:column -->
|
2023-07-19 11:24:21 +00:00
|
|
|
</div>
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- /wp:columns -->
|
2023-07-19 11:24:21 +00:00
|
|
|
</div>
|
2023-10-05 11:14:53 +00:00
|
|
|
<!-- /wp:group -->
|