-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (31 loc) · 1.17 KB
/
Copy pathindex.html
File metadata and controls
36 lines (31 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SimplePost</title>
<!-- Google Fonts: Roboto -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="centered-header">
<h1>Welcome to SimplePost</h1>
</header>
<main class="content-wrapper">
<!-- Dynamic Addition Box Container -->
<div id="adding-container"></div>
<!-- Main Post List Feed -->
<div id="post-list" class="post-feed">
<!-- Fetched posts will render here -->
</div>
</main>
<!-- Floating Action Button to Trigger Post Box -->
<button id="action-btn" class="fab-post" aria-label="Add Post">
<svg class="icon" viewBox="0 0 24 24"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>
</button>
<!-- Lightweight Markdown Parser for client-side rendering -->
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="script.js"></script>
</body>
</html>