Initial commit

This commit is contained in:
cheddar 2025-04-16 22:47:29 -04:00
commit f3955f6322
No known key found for this signature in database
22 changed files with 2422 additions and 0 deletions

9
content/about.md Normal file
View file

@ -0,0 +1,9 @@
---
title: About Me
tags: site
nav_order: 3
---
# About Me
I am a human being. Most of the time.

10
content/blog/article1.md Normal file
View file

@ -0,0 +1,10 @@
---
title: The First Article
description: The first sample article thingy
date: 2025-04-16
series:
name: The Articles
number: 1
---
This is it. Come on, let's hear you SCREAM!

10
content/blog/article2.md Normal file
View file

@ -0,0 +1,10 @@
---
title: The Second Article
description: The second sample article thingy
date: 2025-04-16
series:
name: The Articles
number: 1
---
And here we have the second article

9
content/blog/article3.md Normal file
View file

@ -0,0 +1,9 @@
---
title: The Third Article
date: 2025-04-16
series:
name: The something elses
number: 3
---
This is something else entirely.

View file

@ -0,0 +1,6 @@
export default {
tags: [
"posts"
],
layout: 'layouts/post.njk'
}

View file

@ -0,0 +1,3 @@
export default {
layout: 'layouts/base.njk'
};

9
content/index.njk Normal file
View file

@ -0,0 +1,9 @@
---
title: Home
tags: site
nav_order: 1
---
<h1>This is the home page!</h1>
{% include "post_list.njk" %}

13
content/series.njk Normal file
View file

@ -0,0 +1,13 @@
---
title: Series
tags: site
nav_order: 2
---
<h1>Blog Series</h1>
<ol>
{%- for seriesName in collections.series %}
<li>{% include "series_list.njk" %}</li>
{%- endfor %}
</ol>