-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (65 loc) · 1.89 KB
/
Copy pathindex.html
File metadata and controls
77 lines (65 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blogmate - My Personal Blog</title>
<link rel="icon" type="image/x-icon" href="images/c.ico"/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- HEADER -->
<header class="top-bar">
<div class="left">
<span class="site-icon">C</span>
</div>
<div class="right">
<div class="dropdown">
<button class="dropbtn">More ▾</button>
<div class="dropdown-content">
<a href="about.html">About</a>
<a href="profile.html">Profile</a>
<a href="contact.html">Contact</a>
</div>
</div>
</div>
</header>
<!-- MAIN CONTAINER -->
<div class="container">
<!-- CONTENT -->
<main class="content">
<h1>Blog Posts</h1>
<p class="intro">
<bold>Welcome to my blog!</bold> <br>
Here you'll find a collection of my thoughts, ideas, and projects, tarvelling.<br>
Enjoy My crazy posts.🌸
</p>
<div id="postList"></div>
<div id="postView" class="hidden">
<h2 id="postTitle"></h2>
<div id="postBody"></div>
<button onclick="goBack()">← Back to Posts</button>
</div>
</main>
<!-- SIDEBAR -->
<aside class="sidebar">
<h3>Search Blog</h3>
<input type="text" id="blogSearch" placeholder="Search by title..." />
<!-- VIDEO MODAL -->
<div id="videoModal" class="video-modal hidden">
<div class="video-modal-overlay"></div>
<div class="video-modal-content">
<button class="video-modal-close" onclick="closeVideoModal()">×</button>
<div class="video-modal-player">
<video id="modalVideo" controls></video>
</div>
</div>
</div>
<h3>About Me</h3>
<p><strong>See profile for about me!</strong></p>
<a href="profile.html">View Profile →</a>
</aside>
</div>
<script src="script.js"></script>
</body>
</html>