-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathindex.html
27 lines (21 loc) · 1.22 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stickerz</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="css/alert.css">
<link rel="shortcut icon" href="img/baby-yoda.svg" type="image/x-icon">
<script src="https://unpkg.com/[email protected]" integrity="sha384-0gxUXCCR8yv9FM2b+U3FDbsKthCI66oH5IA9fHppQq9DDMHuMauqq1ZHBpJxQ0J0" crossorigin="anonymous"></script>
</head>
<body>
<header data-hx-trigger="load" data-hx-swap="outerHTML" data-hx-get="index.header.partial.html"></header>
<main data-hx-trigger="load" data-hx-swap="outerHTML" data-hx-get="index.main.partial.html"></main>
<div class="alert-container container"></div>
<main data-hx-trigger="load" data-hx-swap="outerHTML" data-hx-get="index.product-info.partial.html"></main>
<main data-hx-trigger="load" data-hx-swap="outerHTML" data-hx-get="index.cart.partial.html"></main>
<script src="js/index.js"></script>
</body>
</html>