Files

24 lines
560 B
HTML
Raw Permalink Normal View History

2026-03-07 12:09:01 +07:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@12/swiper-bundle.min.css" />
<script src="https://cdn.jsdelivr.net/npm/swiper@12/swiper-bundle.min.js"></script>
2026-03-07 10:26:20 +07:00
2026-03-07 12:09:01 +07:00
{% include javascript/global %}
2026-03-07 10:26:20 +07:00
{% if global.module == 'home' %}
{% include javascript/homepage %}
{% elsif global.module == 'product' %}
{% if global.view == 'home' %}
{% include javascript/product_list %}
2026-03-10 15:07:29 +07:00
{% elsif global.view == 'detail' %}
{% include javascript/product-detail %}
2026-03-07 10:26:20 +07:00
{% endif %}
2026-03-10 15:07:29 +07:00
{% elsif global.module == 'cart' %}
2026-03-07 10:26:20 +07:00
2026-03-10 15:07:29 +07:00
{% include javascript/cart %}
2026-03-07 10:26:20 +07:00
2026-03-10 15:07:29 +07:00
{% endif %}