carhop__dynamiques-theme__P.../template-parts/components/chapter-section.php
Antoine M bc393a3ca3
All checks were successful
continuous-integration/drone/push Build is passing
FIX correction de la couleur de fond et nettoyage du contenu dans chapter-section
2025-06-04 09:56:37 +02:00

48 lines
1.4 KiB
PHP

<?php
$subtitle = $args['subtitle'];
$title = $args['title'];
$content = $args['content'];
$cta = $args['cta'];
$cover = $args['cover'];
$cover_size = $args['cover_size'];
?>
<section class="deligraph-blocks-chapter-section chapter-section chapter-section--left chapter-section--has-background">
<svg
class="chapter-section__background chapter-section__background--left"
width="1302"
height="654"
viewBox="0 0 1302 654"
preserveAspectRatio="none">
<path
d="M1302 0L0 15.8281V654L1302 642.633L1302 0Z"
fill="#fbe8f2" />
</svg>
<div class="chapter-section__content">
<div class="chapter-section__innerblocks">
<?php if ($subtitle) : ?>
<h2 class="wp-block-heading chapter-section__title"><?php echo $subtitle; ?></h2>
<?php endif; ?>
<?php if ($title) : ?>
<h3 class="wp-block-heading chapter-section__title"><?php echo $title; ?></h3>
<?php endif; ?>
<?php if ($content) : ?>
<?php echo $content; ?>
<?php endif; ?>
<?php if ($cta) : ?>
<?php $block_content = '<!-- wp:carhop-blocks/cta {"text":"' . $cta['title'] . '","color":"#136F63","link":{"url":"' . $cta['url'] . '","title":"Test Link"}} /-->'; ?>
<?php echo do_blocks($block_content); ?>
<?php endif; ?>
</div>
</div>
<img decoding="async" class="chapter-section__cover chapter-section__cover--large" src="<?php echo $cover['url']; ?>" alt="<?php echo $cover['alt']; ?>">
</section>