Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@
<div class="nav-links">
<a href="about.html" class="active">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="blog.html">Blog</a>
</div>
</nav>

Expand Down
216 changes: 216 additions & 0 deletions blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,216 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog | Favour Kelvin</title>
<meta name="description" content="Blog by Favour Kelvin — thoughts on technical writing, developer documentation, API design, and the docs-as-code workflow.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://fakela.github.io/blog.html">
<!-- Open Graph -->
<meta property="og:title" content="Blog | Favour Kelvin">
<meta property="og:description" content="Thoughts on technical writing, developer documentation, API design, and the docs-as-code workflow.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://fakela.github.io/blog.html">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Blog | Favour Kelvin">
<meta name="twitter:description" content="Thoughts on technical writing, developer documentation, API design, and the docs-as-code workflow.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Sora:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0a0a0a;
--surface: #111111;
--surface-hover: #1a1a1a;
--text: #e5e5e5;
--text-muted: #737373;
--accent: #22c55e;
--border: #262626;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Sora', sans-serif;
background-color: var(--bg);
color: var(--text);
min-height: 100vh;
}

nav {
padding: 2rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-logo a {
color: var(--text);
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
}

.nav-links {
display: flex;
gap: 2.5rem;
}

.nav-links a {
color: var(--text-muted);
text-decoration: none;
font-size: 0.9rem;
font-weight: 400;
letter-spacing: 0.02em;
transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
color: var(--text);
}

main {
max-width: 720px;
margin: 0 auto;
padding: 4rem 2rem 6rem;
}

h1 {
font-size: 2.5rem;
font-weight: 600;
letter-spacing: -0.03em;
margin-bottom: 1rem;
}

.intro {
font-size: 1.1rem;
font-weight: 300;
line-height: 1.7;
color: var(--text-muted);
margin-bottom: 3rem;
}

.posts {
display: grid;
gap: 1.5rem;
}

.post-card {
display: block;
padding: 1.75rem 2rem;
background-color: var(--surface);
border: 1px solid var(--border);
border-radius: 2px;
text-decoration: none;
transition: all 0.2s ease;
}

.post-card:hover {
background-color: var(--surface-hover);
border-color: var(--accent);
}

.post-date {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
font-weight: 500;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 0.75rem;
}

.post-title {
font-size: 1.25rem;
font-weight: 600;
color: var(--text);
letter-spacing: -0.02em;
margin-bottom: 0.5rem;
}

.post-excerpt {
font-size: 0.95rem;
font-weight: 300;
line-height: 1.6;
color: var(--text-muted);
margin-bottom: 1rem;
}

.post-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}

.post-tag {
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
padding: 0.3rem 0.6rem;
border: 1px solid var(--border);
border-radius: 2px;
color: var(--text-muted);
}

@media (max-width: 768px) {
nav {
padding: 1.5rem;
flex-direction: column;
gap: 1.5rem;
}

.nav-links {
gap: 1.5rem;
}

h1 {
font-size: 2rem;
}

main {
padding: 2rem 1.5rem 4rem;
}

.post-card {
padding: 1.25rem 1.5rem;
}
}
</style>
</head>
<body>
<nav>
<div class="nav-logo">
<a href="index.html">Favour Kelvin</a>
</div>
<div class="nav-links">
<a href="about.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="blog.html" class="active">Blog</a>
</div>
</nav>

<main>
<h1>Blog</h1>
<p class="intro">Thoughts on technical writing, documentation strategy, and what I've learned building docs for developer tools.</p>

<div class="posts">
<a href="blog/why-docs-as-code.html" class="post-card">
<p class="post-date">Feb 12, 2026</p>
<h2 class="post-title">Why Docs-as-Code Is the Only Way I Work Now</h2>
<p class="post-excerpt">After years of working in wikis, CMSes, and proprietary platforms, I switched to docs-as-code and never looked back. Here's what changed and why it matters.</p>
<div class="post-tags">
<span class="post-tag">docs-as-code</span>
<span class="post-tag">workflow</span>
<span class="post-tag">technical writing</span>
</div>
</a>
</div>
</main>
</body>
</html>
Loading