-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (61 loc) · 1.9 KB
/
index.html
File metadata and controls
64 lines (61 loc) · 1.9 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
<!doctype html>
<html lang="ja">
<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>SNS掲示板</title>
</head>
<body>
<div id="app">
<header>
<h1>SNS掲示板</h1>
<div class="user-info">
<label>ユーザー名: </label>
<input
type="text"
id="current-user"
placeholder="名前を入力"
value="ゲスト"
/>
</div>
</header>
<main>
<!-- 新規投稿フォーム -->
<div class="new-post-container">
<h2>新しい投稿</h2>
<textarea id="new-post-content" placeholder="今何してる?"></textarea>
<button id="submit-post">投稿する</button>
</div>
<!-- 投稿一覧 -->
<div class="posts-container">
<h2>タイムライン</h2>
<div id="posts-list">
<!-- 投稿がここに表示される -->
</div>
<div id="pagination-container">
<!-- ページネーションがここに表示される -->
</div>
</div>
</main>
<!-- コメントモーダル -->
<div id="comment-modal" class="modal">
<div class="modal-content">
<div class="modal-header">
<h3>コメント</h3>
<button class="close-btn" id="close-modal">×</button>
</div>
<div id="comments-list"></div>
<div class="new-comment">
<textarea
id="new-comment-content"
placeholder="コメントを入力"
></textarea>
<button id="submit-comment">コメントする</button>
</div>
</div>
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>