-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (39 loc) · 1.05 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!-- @format -->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + TS</title>
</head>
<body data-barba="wrapper">
<header>
<h1 id="page-title">WEBSITE HOME</h1>
</header>
<nav>
<ul>
<li>
<a href="/index.html">Homepage</a>
</li>
<li>
<a href="/src/pages/contact.html">
Contacts
</a>
</li>
</ul>
</nav>
<!-- put here content that will not change
between your pages, like <header> or <nav> -->
<!-- <div id="app"></div> -->
<main data-barba="container" data-barba-namespace="home">
<!-- put here the content you wish to change
between your pages, like your main content <h1> or <p> -->
<h1>This is the Homepage</h1>
</main>
<!-- put here content that will not change
between your pages, like <footer> -->
<footer></footer>
<script type="module" src="/src/main.ts"></script>
</body>
</html>