-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall-posts.html
More file actions
92 lines (82 loc) · 2.79 KB
/
Copy pathall-posts.html
File metadata and controls
92 lines (82 loc) · 2.79 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
<!DOCTYPE html>
<!-- root element -->
<html lang="en">
<!-- head section -->
<head>
<!-- metadata -->
<meta charset="UTF-8">
<!-- webpage title -->
<title>home</title>
<!-- stylesheet -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
crossorigin="anonymous"></script>
<!-- fonts -->
<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=Hepta+Slab:[email protected]&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,[email protected],200..800&family=Hepta+Slab:[email protected]&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./styles.css"/>
</head>
<body>
<header class="text-center py-4 border-bottom border-black">
<h1 class="fw-bold display-5">ALL POSTS</h1>
</header>
<!-- navigation -->
<div id="navbar-container"></div>
<div id="posts">
<a href="post.html" class="post">
<h2>Loading Posts...</h2>
<div class="meta">
<p>by: Name</p>
<p>Date</p>
</div>
</a>
<a href="post.html" class="post">
<h2>Loading Posts...</h2>
<div class="meta">
<p>by: Name</p>
<p>Date</p>
</div>
</a>
<a href="post.html" class="post">
<h2>Loading Posts...</h2>
<div class="meta">
<p>by: Name</p>
<p>Date</p>
</div>
</a>
<a href="post.html" class="post">
<h2>Loading Posts...</h2>
<div class="meta">
<p>by: Name</p>
<p>Date</p>
</div>
</a>
<a href="post.html" class="post">
<h2>Loading Posts...</h2>
<div class="meta">
<p>by: Name</p>
<p>Date</p>
</div>
</a>
<a href="post.html" class="post">
<h2>Loading Posts...</h2>
<div class="meta">
<p>by: Name</p>
<p>Date</p>
</div>
</a>
</div>
<script type="module" src="./scripts/renderAllPosts.js"></script>
<script src="scripts/app.js"></script>
</body>
</html>