All checks were successful
Deploy / Deploy to Production (push) Successful in 7s
- Created site/snippets/header.php with parameterized title and template - Created site/snippets/footer.php with optional additional scripts - Updated home.php and product.php to use the new snippets - Reduces code duplication and improves maintainability 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
<?php snippet('header', ['title' => $site->title(), 'template' => 'store']) ?>
|
|
|
|
<main>
|
|
<p class="p__baseline-big">
|
|
<?= $page->baseline()->or('Bienvenue sur la boutique de soutien à Index') ?>
|
|
</p>
|
|
|
|
<section id="store__container">
|
|
<?php foreach($site->children()->listed() as $product): ?>
|
|
<article class="store__product">
|
|
<figure>
|
|
<?php if($image = $product->images()->first()): ?>
|
|
<img src="<?= $image->url() ?>" alt="<?= $product->title()->html() ?>" />
|
|
<?php endif ?>
|
|
</figure>
|
|
<p class="line-1"><a href="<?= $product->url() ?>"><?= $product->title()->html() ?></a></p>
|
|
<p class="price"><?= $product->price() ?>€</p>
|
|
<a href="<?= $product->url() ?>" class="link-block" aria-hidden="true"></a>
|
|
</article>
|
|
<?php endforeach ?>
|
|
</section>
|
|
|
|
<p class="p__baseline-big">
|
|
<?= t('supportText', 'Pour nous soutenir, vous pouvez aussi') ?>
|
|
<a href="https://soutenir.index.ngo" class="link-don"><?= t('makeDonation', 'faire un don') ?></a>
|
|
</p>
|
|
</main>
|
|
|
|
<?php snippet('footer') ?>
|