diff --git a/config.yaml b/config.yaml index 8d92284..cf542bb 100644 --- a/config.yaml +++ b/config.yaml @@ -5,6 +5,7 @@ theme: desert-breeze enableGitInfo: true params: author: yequari + description: yequari's homepage # about: "I write code and occasionally blog posts." webmentions: https://webmention.io/yequari.com/webmention pingbacks: https://webmention.io/yequari.com/xmlrpc @@ -12,6 +13,13 @@ params: email: "yequari@32bit.cafe" xmpp: "yequari@omg.lol" mastodon: "retro.pizza/@yequari" + keywords: + - smallweb + - personal websites + - computing + - programming + favicon: /favicon.png + rich_preview: /images/richpreview.jpg taxonomies: category: categories tag: tags diff --git a/content/links/3ds-streetpass.md b/content/links/3ds-streetpass.md new file mode 100644 index 0000000..ee96b13 --- /dev/null +++ b/content/links/3ds-streetpass.md @@ -0,0 +1,16 @@ +--- +title: "3ds Streetpass" +date: 2025-02-26T17:01:59-07:00 +context: + url: https://whatsacomputer.com/posts/the-2025-streetpass-challenge + author: What's a Computer? + title: The 2025 Streetpass Challenge +year: "2025" +tags: + - games + - amusement +categories: + - links +--- + +Brandon at What's a Computer? writes about his 2025 Streetpass challenge to see how many Streetpass tags he can get with his 3DS. I miss Streetpass a lot, I have fond memories of going on a school trip and getting tags from people all over the country. Seeing the indicator lit up at the end of the day was exciting! It's a shame the Switch gave up on this feature. diff --git a/data/now.yaml b/data/now.yaml index 780b633..ee3b741 100644 --- a/data/now.yaml +++ b/data/now.yaml @@ -1,3 +1,3 @@ - "Playing D&D" -- "Cleaning up my living space" +- "Building a Gundam kit" - "Improving my physical fitness" diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..8578d1d --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,4 @@ +{{ define "main" }} +

Not Found

+ +{{ end }} diff --git a/static/images/magnus.gif b/static/images/magnus.gif new file mode 100644 index 0000000..a4a02ad Binary files /dev/null and b/static/images/magnus.gif differ diff --git a/static/richpreview.jpg b/static/richpreview.jpg new file mode 100644 index 0000000..6856fb8 Binary files /dev/null and b/static/richpreview.jpg differ diff --git a/themes/desert-breeze/layouts/partials/head.html b/themes/desert-breeze/layouts/partials/head.html index 02c2240..3cf3e29 100644 --- a/themes/desert-breeze/layouts/partials/head.html +++ b/themes/desert-breeze/layouts/partials/head.html @@ -1,5 +1,6 @@ +{{ partial "head/meta.html" . }} {{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }} {{ partialCached "head/css.html" . }} {{ partialCached "head/js.html" . }} diff --git a/themes/desert-breeze/layouts/partials/head/meta.html b/themes/desert-breeze/layouts/partials/head/meta.html new file mode 100644 index 0000000..8b0f4c5 --- /dev/null +++ b/themes/desert-breeze/layouts/partials/head/meta.html @@ -0,0 +1,18 @@ +{{ with site.Params.Author }} + +{{ end }} +{{ with site.Params.Description }} + + +{{ end }} +{{ with site.Params.Keywords }} + +{{ end }} + + +{{ with site.Params.rich_preview }} + +{{ end }} +{{ with site.Params.favicon }} + +{{ end }}