feat: remove unused posts
All checks were successful
Build OCI Image / docker (push) Successful in 3m21s
All checks were successful
Build OCI Image / docker (push) Successful in 3m21s
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.zig-cache
|
||||||
@@ -28,6 +28,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
width: 100%;
|
||||||
line-height: var(--line-height);
|
line-height: var(--line-height);
|
||||||
background: var(--background-color);
|
background: var(--background-color);
|
||||||
color: var(--foreground-color);
|
color: var(--foreground-color);
|
||||||
|
|||||||
@@ -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!
|
|
||||||
@@ -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!
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title id="title">Yadunand'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>
|
|
||||||
@@ -15,17 +15,7 @@
|
|||||||
<div id="main">
|
<div id="main">
|
||||||
|
|
||||||
<h1>Blogs</h1>
|
<h1>Blogs</h1>
|
||||||
<ul>
|
<ul></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>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div id="debug-grid"></div>
|
<div id="debug-grid"></div>
|
||||||
|
|||||||
@@ -1,29 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title id="title">Yadunand'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>
|
|
||||||
@@ -24,15 +24,7 @@
|
|||||||
<li>
|
<li>
|
||||||
<a href="/blog/">Blogs</a>
|
<a href="/blog/">Blogs</a>
|
||||||
<div>
|
<div>
|
||||||
<ul>
|
<ul></ul>
|
||||||
<li>
|
|
||||||
<a href="/blog/second-post/">Second Post!</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/blog/first-post/">First Post!</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@@ -28,6 +28,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
width: 100%;
|
||||||
line-height: var(--line-height);
|
line-height: var(--line-height);
|
||||||
background: var(--background-color);
|
background: var(--background-color);
|
||||||
color: var(--foreground-color);
|
color: var(--foreground-color);
|
||||||
|
|||||||
Reference in New Issue
Block a user