generated from koldovsky/htmx-template-autocheck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (124 loc) · 3.83 KB
/
index.html
File metadata and controls
126 lines (124 loc) · 3.83 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cabin Rental</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="img/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="img/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="img/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="img/favicon/site.webmanifest" />
<link
rel="icon"
type="image/png"
sizes="192x192"
href="img/favicon/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="img/favicon/android-chrome-512x512.png"
/>
<script
src="https://unpkg.com/htmx.org@1.9.10"
integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC"
crossorigin="anonymous"
></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="css/pages/index.css" />
</head>
<body>
<header class="header">
<nav
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/global/global.header-nav.partial.html"
></nav>
</header>
<main class="main">
<section
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/index/index.hero.partial.html"
></section>
<!--Andrii Khrushch part 2 start -->
<section
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/index/index.adventure-hero.partial.html"
></section>
<!--Andrii Khrushch part 2 end-->
<!--Mark Hlovachevskyi part 3 start -->
<section
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/index/index.cabin-rentals.partial.html"
></section>
<!--Mark Hlovachevskyi part 3 end-->
<!--Rostyslav Kaziuta part 4 start-->
<section
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/index/index.things-to-do.partial.html"
></section>
<!--Rostyslav Kaziuta part 4 end-->
<!-- Herei Vladyslav part 5 start -->
<section
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/index/index.our-facilities.partial.html"
></section>
<!-- Herei Vladyslav part 5 end -->
<!--Cherevychnyi Yaroslav part 6 start-->
<section
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/index/index.shop-cafe.partial.html"
></section>
<!--Cherevychnyi Yaroslav part 6 end-->
<!--Ilya Borodiy part 7 start -->
<section
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/index/index.testimonials.partial.html"
></section>
<!--Ilya Borodiy part 7 end -->
</main>
<!--Hordiienko Vladyslava part 8 "reservation" start-->
<section
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/index/index.make-a-reservation.partial.html"
></section>
<!--Hordiienko Vladyslava part 8 end-->
<!--Maryna Huz part 9 'global footer' start-->
<footer
class="footer"
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="partials/global/global.footer.partial.html"
></footer>
<!--Maryna Huz part 9 'global footer' end-->
<script src="js/pages/index.js"></script>
</body>
</html>