feat: remove unused posts
All checks were successful
Build OCI Image / docker (push) Successful in 3m21s

This commit is contained in:
Yadunand Prem 2024-12-27 00:28:36 -08:00
parent cbfe9aea40
commit 08f0f02ff6
No known key found for this signature in database
9 changed files with 5 additions and 94 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.zig-cache

View File

@ -28,6 +28,7 @@
}
body {
width: 100%;
line-height: var(--line-height);
background: var(--background-color);
color: var(--foreground-color);

View File

@ -1,8 +0,0 @@
---
.title = "First Post!",
.date = @date("2024-12-14"),
.author = "Yadunand Prem",
.layout = "post.shtml",
.draft = false,
---
This is my first post!

View File

@ -1,8 +0,0 @@
---
.title = "Second Post!",
.date = @date("2024-12-16"),
.author = "Yadunand Prem",
.layout = "post.shtml",
.draft = false,
---
This is my second post!

View File

@ -1,29 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title id="title">Yadunand&apos;s Site</title>
<link rel="stylesheet" type="text/css" href="/reset.css">
<link rel="stylesheet" type="text/css" href="/style.css">
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/blog/">Blog</a>
<a href="/sitemap/">Sitemap</a>
</nav>
<div id="main">
<h2>First Post!</h2>
<h3>by
<span>Yadunand Prem</span></h3>
<h4>
Posted on:
<span>December 14, 2024</span>
</h4>
<div><p>This is my first post!</p></div>
</div>
<div id="debug-grid"></div>
</body>
</html>

View File

@ -15,17 +15,7 @@
<div id="main">
<h1>Blogs</h1>
<ul>
<li>
<a href="/blog/second-post/">Second Post!</a>
<div></div>
</li>
<li>
<a href="/blog/first-post/">First Post!</a>
<div></div>
</li>
</ul>
<ul></ul>
</div>
<div id="debug-grid"></div>

View File

@ -1,29 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title id="title">Yadunand&apos;s Site</title>
<link rel="stylesheet" type="text/css" href="/reset.css">
<link rel="stylesheet" type="text/css" href="/style.css">
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/blog/">Blog</a>
<a href="/sitemap/">Sitemap</a>
</nav>
<div id="main">
<h2>Second Post!</h2>
<h3>by
<span>Yadunand Prem</span></h3>
<h4>
Posted on:
<span>December 16, 2024</span>
</h4>
<div><p>This is my second post!</p></div>
</div>
<div id="debug-grid"></div>
</body>
</html>

View File

@ -24,15 +24,7 @@
<li>
<a href="/blog/">Blogs</a>
<div>
<ul>
<li>
<a href="/blog/second-post/">Second Post!</a>
</li>
<li>
<a href="/blog/first-post/">First Post!</a>
</li>
</ul>
<ul></ul>
</div>
</li>
</ul>

View File

@ -28,6 +28,7 @@
}
body {
width: 100%;
line-height: var(--line-height);
background: var(--background-color);
color: var(--foreground-color);