Files
yuzu/components/collection-card.php
Bruno21 523ccac38e Yuzu Theme
from meowapps.com
2022-05-03 09:37:05 +02:00

17 lines
598 B
PHP

<div class="collection-card-container">
<a href="<?= get_the_permalink( $collection['id'] ); ?>"
class="collection-card <?= get_theme_mod('collection-card-header-ratio', 'three-two'); ?>">
<div class="background" style="background-image: url('<?= get_the_post_thumbnail_url($collection['id'],'large'); ?>')"></div>
<div class="content">
<h3>
<?= $collection['name']; ?>
</h3>
<div class="collection-meta">
<?php get_template_part('assets/icons/inline', 'camera.svg'); ?>
<?= $collection['photos']; ?>
</div>
</div>
</a>
</div>