Initial commit
This commit is contained in:
commit
f3955f6322
22 changed files with 2422 additions and 0 deletions
9
content/about.md
Normal file
9
content/about.md
Normal 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
10
content/blog/article1.md
Normal 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
10
content/blog/article2.md
Normal 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
9
content/blog/article3.md
Normal 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.
|
6
content/blog/blog.11tydata.js
Normal file
6
content/blog/blog.11tydata.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
export default {
|
||||
tags: [
|
||||
"posts"
|
||||
],
|
||||
layout: 'layouts/post.njk'
|
||||
}
|
3
content/content.11tydata.js
Normal file
3
content/content.11tydata.js
Normal file
|
@ -0,0 +1,3 @@
|
|||
export default {
|
||||
layout: 'layouts/base.njk'
|
||||
};
|
9
content/index.njk
Normal file
9
content/index.njk
Normal 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
13
content/series.njk
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue