File size: 517 Bytes
5affa39
 
 
 
 
f38c7d6
 
5affa39
 
 
 
 
 
 
ccb29a7
5affa39
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Posts</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <h1>Posts</h1>
    <div id="posts-container"></div>

    <dialog id="post-dialog">
        <button class="close-btn" id="close-dialog">×</button>
        <h2 id="dialog-title"></h2>
        <div id="post-content"></div>
    </dialog>

    <script src="app.js"></script>
</body>
</html>