diff options
Diffstat (limited to 'content')
| -rw-r--r-- | content/blog.md | 7 | ||||
| -rw-r--r-- | content/blog/11ty.md | 2 | ||||
| -rw-r--r-- | content/blog/cbin.md | 2 | ||||
| -rw-r--r-- | content/blog/pipedals.md | 2 | ||||
| -rw-r--r-- | content/index.md | 26 |
5 files changed, 11 insertions, 28 deletions
diff --git a/content/blog.md b/content/blog.md index 016afa9..cf039a5 100644 --- a/content/blog.md +++ b/content/blog.md @@ -2,9 +2,4 @@ title: Blog layout: page --- -<div> {% for post in collections.blog | reverse %} - <a href="{{ post.url }}" class="blogpost"> - <h3>{{ post.data.title }}</h3> - <small>{{ post.date | date }}<span style="float:right;">{{ post.url }}</span></small> - </a><br> {% endfor %} -</div> +{% include "blog-list.njk" %} diff --git a/content/blog/11ty.md b/content/blog/11ty.md index 5e837a7..a063639 100644 --- a/content/blog/11ty.md +++ b/content/blog/11ty.md @@ -1,6 +1,6 @@ --- title: This website now uses 11ty! -keywords: new 11ty +keywords: 11ty web js html date: 2026-03-14 --- diff --git a/content/blog/cbin.md b/content/blog/cbin.md index e31767d..815454e 100644 --- a/content/blog/cbin.md +++ b/content/blog/cbin.md @@ -1,6 +1,6 @@ --- title: Made a Pastebin site :P -keywords: pastebin bin paste cbin +keywords: pastebin c date: 2026-05-07 --- diff --git a/content/blog/pipedals.md b/content/blog/pipedals.md index ab07957..abd6704 100644 --- a/content/blog/pipedals.md +++ b/content/blog/pipedals.md @@ -1,6 +1,6 @@ --- title: Dead simple digital guitar pedals in C -keywords: guitar pedal c simple +keywords: guitar c dsp audio date: 2026-05-25 --- diff --git a/content/index.md b/content/index.md index 0ddb9da..cf268c3 100644 --- a/content/index.md +++ b/content/index.md @@ -7,20 +7,13 @@ title: "Hey, I'm Spelis!" Hey! I am a student from Sweden, I like to write software and play bass guitar. -I like to build things simple, fast and easy to understand. I spend a lot of time playing with low-level programming, Linux, and whatever catches my eye that week. I write most of my projects in C. When I'm not coding I spend most of my time practicing bass and learning songs I like. +I like to build things that are simple, fast and easy to understand. I spend a lot of time playing with low-level programming, Linux, and whatever catches my eye that week. I write most of my projects in C. When I'm not coding I spend most of my time practicing bass and learning songs I like. -Studying Computer Science and IT at NTI in LuleƄ, Sweden. +## Things I like building -## Technologies - -While I'm always learning new things (and there's more I already know), these are the technologies I'm most comfortable with: - -* C - * Raylib - * POSIX/Linux development -* Java - * FabricMC mod development - * PaperMC plugin development +* Low-level software in C +* Minecraft mods and plugins +* Whatever I can come up with --- @@ -39,15 +32,10 @@ This site is rated <a href="https://www.mabsland.com/Adoption.html" target="_bla --- # Blog -<div> {% for post in collections.blog | reverse %} - <a href="{{ post.url }}" class="blogpost"> - <h3>{{ post.data.title }}</h3> - <small>{{ post.date | date }}<span style="float:right;">{{ post.url }}</span></small> - </a><br> {% endfor %} -</div> +{% include "blog-list.njk" %} --- <span>Location: <code>Northern Sweden</code></span> -<span>Age: <code class="my-age"></code> years old.</span> +<span>Age: <code class="my-age">{{ age }}</code> years old.</span> |
