24 lines
560 B
HTML
24 lines
560 B
HTML
<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>
|
|
|
|
{% include javascript/global %}
|
|
|
|
|
|
{% if global.module == 'home' %}
|
|
|
|
{% include javascript/homepage %}
|
|
|
|
{% elsif global.module == 'product' %}
|
|
|
|
{% if global.view == 'home' %}
|
|
{% include javascript/product_list %}
|
|
{% elsif global.view == 'detail' %}
|
|
{% include javascript/product-detail %}
|
|
{% endif %}
|
|
|
|
{% elsif global.module == 'cart' %}
|
|
|
|
{% include javascript/cart %}
|
|
|
|
{% endif %}
|