-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
39 lines (34 loc) · 963 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
$product = [
'id' => 1,
'name' => 'Test',
'price' => 100,
'category' => 'category'
];
?>
<html>
<head>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<div class="shop-item">
<div class="title">Product: <?= $product['name'] ?></div>
<div class="description">Price: <?= $product['price'] ?>$</div>
<div class="footer">
<button data-company="tbc" class="btn-installment">TBC</button>
<button data-company="bog" class="btn-installment">BOG</button>
<button data-company="liberty" class="btn-installment">LIBERTY</button>
<button data-company="republic" class="btn-installment">REPUBLIC</button>
</div>
</div>
</div>
<script>
var store = {
product: JSON.parse('<?= json_encode($product) ?>')
};
</script>
<script src="js/jquery.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>