-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 862 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 862 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="shortcut icon" href="#" type="image/x-icon" />
<script
src="https://unpkg.com/htmx.org@1.9.10"
integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC"
crossorigin="anonymous"
></script>
</head>
<body>
<header class="header">
<nav
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="global.header-nav.partial.html"
></nav>
<div
data-hx-trigger="load"
data-hx-swap="outerHTML"
data-hx-get="index.header-hero.partial.html"
></div>
</header>
<main class="main"></main>
<footer class="footer"></footer>
</body>
</html>