-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (37 loc) · 1.57 KB
/
index.html
File metadata and controls
59 lines (37 loc) · 1.57 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="icon" type="image/png" href="./src/assets/web_icon.png">
<link rel="stylesheet" href="src/styles/normalize.css">
<link rel="stylesheet" href="src/styles/common.css">
<link rel="stylesheet" href="src/styles/components/buttons.css">
<link rel="stylesheet" href="src/styles/components/inputs.css">
<link rel="stylesheet" href="src/styles/components/selects.css">
<link rel="stylesheet" href="src/styles/navbar.css">
<link rel="stylesheet" href="src/styles/footer.css">
<link rel="stylesheet" href="src/styles/components/notifications.css">
<link rel="stylesheet" href="src/styles/components/loader.css">
<link rel="stylesheet" href="src/styles/components/loader-container.css">
<link rel="stylesheet" href="src/styles/components/post-card-container.css">
<link rel="stylesheet" href="src/styles/components/post.css">
<link rel="stylesheet" href="src/styles/components/pagination.css">
</head>
<body>
<nav class="navbar"></nav>
<main>
<h1>Posts</h1>
<div class="session"></div>
<div class="loader-container">
<div class="loader hidden"></div>
</div>
<div class="notifications"></div>
<div class="post-card-container"></div>
<div class="pages" id="pages"></div>
</main>
<div class="footer"></div>
<script type="module" src="./src/js/main.js"></script>
</body>
</html>