generated from koldovsky/htmx-template-autocheck
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhabitations.html
More file actions
59 lines (59 loc) · 1.71 KB
/
habitations.html
File metadata and controls
59 lines (59 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gampling | Habitations</title>
<link
rel="shortcut icon"
type="image/png"
href="https://res2.weblium.site/res/65a4dd651ae638000e4a167b/65c5f7ddbd7a9b000f341560_optimized"
sizes="16x16"
/>
<link rel="stylesheet" href="css/habitations.css" />
<script
src="https://unpkg.com/htmx.org@1.9.10"
integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC"
crossorigin="anonymous"
></script>
</head>
<body>
<header class="header">
<div
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="global.header-nav.partial.html"
></div>
<section
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="habitations.header-hero.partial.html"
></section>
</header>
<main class="main">
<div
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="habitations.cards.partial.html"
></div>
<div
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="habitations.special-offers.partial.html"
></div>
<div
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="habitations.form.partial.html"
></div>
</main>
<footer
class="footer"
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="global.footer.partial.html"
></footer>
</body>
<script type="module" src="./js/habitations.js"></script>
</html>