diff options
Diffstat (limited to 'content')
| -rw-r--r-- | content/blog.md | 17 | ||||
| -rw-r--r-- | content/blog/blog.11tydata.mjs | 4 | ||||
| -rw-r--r-- | content/blog/test-post.md | 4 | ||||
| -rw-r--r-- | content/index.md | 14 |
4 files changed, 39 insertions, 0 deletions
diff --git a/content/blog.md b/content/blog.md new file mode 100644 index 0000000..bffe34b --- /dev/null +++ b/content/blog.md @@ -0,0 +1,17 @@ +--- +title: Blog +layout: page +nav: true +--- + +Some interesting posts. :) + +## Posts +<ul> + {% for post in collections.blog | reverse %} + <li> + <a href="{{ post.url }}">{{ post.data.title }}</a> + <small>{{ post.date | date }}</small> + </li> + {% endfor %} +</ul>
\ No newline at end of file diff --git a/content/blog/blog.11tydata.mjs b/content/blog/blog.11tydata.mjs new file mode 100644 index 0000000..f88fb2a --- /dev/null +++ b/content/blog/blog.11tydata.mjs @@ -0,0 +1,4 @@ +export default { + tags: ["blog"], + layout: "post" +};
\ No newline at end of file diff --git a/content/blog/test-post.md b/content/blog/test-post.md new file mode 100644 index 0000000..1aedffa --- /dev/null +++ b/content/blog/test-post.md @@ -0,0 +1,4 @@ +--- +title: Post 1 +keywords: WOW OMG +---
\ No newline at end of file diff --git a/content/index.md b/content/index.md new file mode 100644 index 0000000..9342d9d --- /dev/null +++ b/content/index.md @@ -0,0 +1,14 @@ +--- +title: "Home" +nav: true +--- + +Hey, I'm Spelis. + +I write software mainly in **C**, **Python**, and **Java**. Currently learning **Zig**. + +--- + +<span>Location: <code>Northern Sweden</code></span> + +<span>Age: <code class="my-age"></code> years old.</span>
\ No newline at end of file |
