carhop__dynamiques-theme__P.../template-parts/revues/revue-recommandation-card.php
Nonimart 1f4059cbaf
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Introducing block recommandations
2025-10-14 15:54:42 +02:00

27 lines
712 B
PHP

<?php
$title = $args['title'];
$ID = $args['ID'];
$thumbnail = get_the_post_thumbnail($ID, 'full');
?>
<a href="<?php echo get_the_permalink($ID); ?>" class="revue-recommandation-card">
<div class="content-meta">
<span class="content-meta__type content-meta__type--revue">Revue</span>
</div>
<h3 class="revue-recommandation-card__title"><?php echo $title; ?></h3>
<?php if ($thumbnail) : ?>
<div class="revue-recommandation-card__thumbnail">
<?php echo $thumbnail; ?>
</div>
<?php endif; ?>
<div class="cta cta--go cta--primary">
<img src="<?php echo get_template_directory_uri(); ?>/resources/img/carhop-fleche-full.svg" alt="<?php echo $alt; ?>">
</div>
</a>