-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 1.86 KB
/
index.html
File metadata and controls
52 lines (47 loc) · 1.86 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Nulledgeable - Home</title>
<link rel="manifest" href="site.webmanifest">
<link rel="icon" href="favicon.ico" sizes="any">
<link rel="icon" href="icon.png" type="image/png">
<meta name="description" content="Software development blog featuring posts, lessons, and business essays">
<meta name="theme-color" content="#6b46c1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="wiki-container">
<header class="wiki-header">
<div class="header-top">
<div class="site-title">Nulledgeable</div>
<button class="hamburger" id="hamburger" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
</div>
<nav class="wiki-nav" id="wikiNav">
<a href="posts.html">Posts</a>
<a href="reading-list.html">Reading List</a>
<a href="about.html">About Me</a>
<a href="lessons.html">Lessons</a>
<a href="business.html">Business Essays</a>
<a href="projects.html">Projects</a>
</nav>
</header>
<main class="wiki-content">
<section class="recent-article">
<h2 class="section-heading">Most Recent Article</h2>
<div id="recentArticle" class="featured-post"></div>
</section>
</main>
<footer class="wiki-footer">
<p>Last modified: November 16, 2025 | Built with HTML, CSS & JavaScript</p>
</footer>
</div>
<script src="js/main.js"></script>
</body>
</html>