Yuzu Theme

from meowapps.com
This commit is contained in:
2022-05-03 09:37:05 +02:00
commit 523ccac38e
75 changed files with 15482 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<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>