2026-01-14 12:02:55 +01:00
|
|
|
<?php snippet('cart-drawer') ?>
|
2026-01-14 11:26:14 +01:00
|
|
|
|
2025-12-10 15:54:25 +01:00
|
|
|
<footer id="site-footer">
|
|
|
|
|
<div class="site-footer__container">
|
|
|
|
|
<div class="footer__mentions">
|
|
|
|
|
<p class="p__small">
|
|
|
|
|
© <?= date('Y') ?> Index Investigation |
|
|
|
|
|
<a target="_blank" href="https://www.index.ngo/mentions-legales/">Mentions légales</a>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
|
|
<script src="<?= url('assets/js/onload.js') ?>"></script>
|
2026-01-14 11:26:14 +01:00
|
|
|
<script src="<?= url('assets/js/shopify-cart.js') ?>"></script>
|
|
|
|
|
<script src="<?= url('assets/js/cart-drawer.js') ?>"></script>
|
2025-12-10 15:54:25 +01:00
|
|
|
<?php if(isset($scripts) && is_array($scripts)): ?>
|
|
|
|
|
<?php foreach($scripts as $script): ?>
|
|
|
|
|
<script src="<?= url($script) ?>"></script>
|
|
|
|
|
<?php endforeach ?>
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|