18 lines
849 B
PHP
18 lines
849 B
PHP
<?php
|
|
|
|
?>
|
|
|
|
|
|
<div class="page-card">
|
|
<img class="page-card__page-cover-illustration" src="<?php echo $args['coverIllustration']['url'] ?>" alt="<?php echo $args['coverIllustration']['alt'] ?>">
|
|
<div class="page-card__inner">
|
|
<h2 class="page-card__title"><?php echo $args['title'] ?></h2>
|
|
<p class="page-card__excerpt"><?php echo $args['excerpt'] ?></p>
|
|
<a href=" <?php echo $args['permalink'] ?>" class="page-card__cta cta cta--read-more cta--with-arrow-button cta--streched ">
|
|
<!-- cta-read-more -->
|
|
<span><?php echo __("En savoir plus", 'homegrade-theme__texte-fonctionnel') ?></span>
|
|
<span class="sr-only"> <?php echo $args['title'] ?></span>
|
|
<img class="cta_arrow_button" src='<?php echo get_template_directory_uri() ?>/resources/img/graphic-assets/arrow-right-circle.svg' alt=''>
|
|
</a>
|
|
</div>
|
|
</div>
|