-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog-post.html
More file actions
71 lines (67 loc) · 2.3 KB
/
blog-post.html
File metadata and controls
71 lines (67 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Post - GLUG SJGI</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="nav-content">
<div class="logo">GLUG SJGI</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="blog.html" class="active">Blog</a>
<a href="features.html">Features</a>
<a href="about.html">About</a>
<a href="faq.html">FAQ</a>
</div>
<button class="menu-toggle" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
<article class="single-post">
<header class="single-post-header">
<div class="blog-post-category" id="post-category"></div>
<h1 id="post-title"></h1>
<div class="single-post-meta">
<time id="post-date"></time>
<span id="post-author"></span>
</div>
</header>
<div class="single-post-content" id="post-content">
<!-- Content will be populated by JavaScript -->
</div>
</article>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>GLUG SJGI</h3>
<p>Promoting freedom through free software</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<a href="index.html">Home</a>
<a href="blog.html">Blog</a>
<a href="features.html">Features</a>
<a href="about.html">About</a>
</div>
<div class="footer-section">
<h3>Connect</h3>
<a href="https://github.com/admin-sauce">GitHub</a>
<a href="#">Twitter</a>
<a href="#">Discord</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 GLUG SJGI. All rights reserved.</p>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>
<link rel="icon" type="image/x-icon" href="favicon.ico">