2025-10-04 11:46:59 +07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>xstore</title>
|
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
|
|
|
|
|
rel="stylesheet">
|
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" />
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
|
2025-10-07 08:23:59 +07:00
|
|
|
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
2025-10-04 11:46:59 +07:00
|
|
|
<link rel="stylesheet" href="{{ 'style.css' | asset_url }}?v=1.2" />
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
{% if global.module != 'login' }
|
|
|
|
|
{% else %}
|
|
|
|
|
{% include other/header %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
{{ page_content }}
|
|
|
|
|
|
|
|
|
|
{% if global.module != 'login' }
|
|
|
|
|
{% else %}
|
|
|
|
|
{% include other/footer %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
|
2025-10-07 08:23:59 +07:00
|
|
|
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
2025-10-04 11:46:59 +07:00
|
|
|
<script src="../../assets/js/main.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|