diff options
| author | Elis Eriksson <Spelis@duck.com> | 2026-03-14 05:45:26 -1000 |
|---|---|---|
| committer | Elis Eriksson <Spelis@duck.com> | 2026-03-14 05:45:26 -1000 |
| commit | e08aa23b16a392b27f283ce20194b84a7382ae59 (patch) | |
| tree | 681b10d780bca2e35033296168bafe660357717f | |
| parent | daa171b55c7fcc65eaaf988ed1c2c89d13b4dc24 (diff) | |
| download | spelis-web-e08aa23b16a392b27f283ce20194b84a7382ae59.tar spelis-web-e08aa23b16a392b27f283ce20194b84a7382ae59.tar.gz spelis-web-e08aa23b16a392b27f283ce20194b84a7382ae59.tar.bz2 spelis-web-e08aa23b16a392b27f283ce20194b84a7382ae59.tar.lz spelis-web-e08aa23b16a392b27f283ce20194b84a7382ae59.tar.xz spelis-web-e08aa23b16a392b27f283ce20194b84a7382ae59.tar.zst spelis-web-e08aa23b16a392b27f283ce20194b84a7382ae59.zip | |
upload the content
| -rw-r--r-- | .cache/eleventy-fetch-1fc116fe93737d8c4d05b10967cad1 | 1 | ||||
| -rw-r--r-- | .cache/eleventy-fetch-1fc116fe93737d8c4d05b10967cad1.buffer | bin | 0 -> 289838 bytes | |||
| -rw-r--r-- | content/blog.md | 8 | ||||
| -rw-r--r-- | content/blog/11ty.md | 10 | ||||
| -rw-r--r-- | content/blog/test-post.md | 4 | ||||
| -rw-r--r-- | content/index.md | 6 | ||||
| -rw-r--r-- | siteconfig.mjs | 6 |
7 files changed, 21 insertions, 14 deletions
diff --git a/.cache/eleventy-fetch-1fc116fe93737d8c4d05b10967cad1 b/.cache/eleventy-fetch-1fc116fe93737d8c4d05b10967cad1 new file mode 100644 index 0000000..a38c22a --- /dev/null +++ b/.cache/eleventy-fetch-1fc116fe93737d8c4d05b10967cad1 @@ -0,0 +1 @@ +{"cachedAt":1773502786897,"type":"buffer","metadata":{"response":{"url":"https://share.spelis.projnull.eu/pfps/normal.png","status":200,"headers":{"accept-ranges":"bytes","connection":"keep-alive","content-length":"289838","content-type":"image/png","date":"Sat, 14 Mar 2026 15:39:46 GMT","etag":"\"6946f8f4-46c2e\"","last-modified":"Sat, 20 Dec 2025 19:28:52 GMT","server":"nginx"}}}}
\ No newline at end of file diff --git a/.cache/eleventy-fetch-1fc116fe93737d8c4d05b10967cad1.buffer b/.cache/eleventy-fetch-1fc116fe93737d8c4d05b10967cad1.buffer Binary files differnew file mode 100644 index 0000000..061825a --- /dev/null +++ b/.cache/eleventy-fetch-1fc116fe93737d8c4d05b10967cad1.buffer diff --git a/content/blog.md b/content/blog.md index 6ffc74b..983ff44 100644 --- a/content/blog.md +++ b/content/blog.md @@ -4,9 +4,9 @@ layout: page nav: 20 --- -Some interesting posts. :) - -## Posts +<!-- Some interesting posts. :) --> +<!----> +<!-- ## Posts --> <ul> {% for post in collections.blog | reverse %} <li> @@ -14,4 +14,4 @@ Some interesting posts. :) <small>{{ post.date | date }}</small> </li> {% endfor %} -</ul>
\ No newline at end of file +</ul> diff --git a/content/blog/11ty.md b/content/blog/11ty.md new file mode 100644 index 0000000..c6107dd --- /dev/null +++ b/content/blog/11ty.md @@ -0,0 +1,10 @@ +--- +title: This website now uses 11ty! +keywords: new 11ty +--- + +Thanks to my friend Jan Palma for making the website! (check him out [here](https://janpalma.cz/)) + +The website uses [11ty](https://www.11ty.dev/) which is a simple static site generator. + +<img src="https://share.spelis.projnull.eu/pfps/normal.png" alt="test" width=100> diff --git a/content/blog/test-post.md b/content/blog/test-post.md deleted file mode 100644 index 1aedffa..0000000 --- a/content/blog/test-post.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -title: Post 1 -keywords: WOW OMG ----
\ No newline at end of file diff --git a/content/index.md b/content/index.md index 03962eb..5dd387b 100644 --- a/content/index.md +++ b/content/index.md @@ -3,12 +3,12 @@ title: "Home" nav: 10 --- -Hey, I'm Spelis. +Hey, I'm Spelis! -I write software mainly in **C**, **Python**, and **Java**. Currently learning **Zig**. +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 +<span>Age: <code class="my-age"></code> years old.</span> diff --git a/siteconfig.mjs b/siteconfig.mjs index 5d205dc..3393b3c 100644 --- a/siteconfig.mjs +++ b/siteconfig.mjs @@ -3,7 +3,6 @@ export const config = { footerLinks: [ - {name: "Git", href:"https://git.spelis.projnull.eu/"}, {name: "Github", href:"https://github.com/spelis/"}, {name: "YouTube", href:"https://www.youtube.com/@Spelis"}, {name: "E-Mail", href:"mailto:spelis.loves.rust@gmail.com"}, @@ -11,6 +10,7 @@ export const config = { headerLinks: [ {name: "Skolmaten", href:"https://spelis.projnull.eu/skolmaten/"}, - {name: "File Share", href:"https://share.spelis.projnull.eu/"}, + {name: "Git", href:"https://git.spelis.projnull.eu/"}, + {name: "Files", href:"https://share.spelis.projnull.eu/"}, ] -}
\ No newline at end of file +} |
