25 lines
1.0 KiB
HTML
25 lines
1.0 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Test</title>
|
||
|
|
</head>
|
||
|
|
<body style="margin: 0; padding: 20px; background: white;">
|
||
|
|
<h1>Products Grid Test</h1>
|
||
|
|
<div id="productsGrid" style="display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;">
|
||
|
|
<div style="border: 1px solid #ccc; padding: 16px; border-radius: 8px;">
|
||
|
|
<img src="/assets/images/products/washi-1.jpg" style="width: 100%; height: 200px; object-fit: cover;" alt="Test">
|
||
|
|
<h3>Test Product 1</h3>
|
||
|
|
<p style="color: #ff6b6b; font-weight: bold;">$15.99</p>
|
||
|
|
</div>
|
||
|
|
<div style="border: 1px solid #ccc; padding: 16px; border-radius: 8px;">
|
||
|
|
<img src="/assets/images/products/washi-2.jpg" style="width: 100%; height: 200px; object-fit: cover;" alt="Test">
|
||
|
|
<h3>Test Product 2</h3>
|
||
|
|
<p style="color: #ff6b6b; font-weight: bold;">$8.99</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<script>
|
||
|
|
console.log('Test page loaded');
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|