homegrade_theme_production/template-components/cards/page-card.php

18 lines
681 B
PHP

<?php
echo '<pre>';
print_r($args);
echo '</pre>';
?>
<div class="page-card">
<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 __("Lire l'article", '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>