minor tweaks + new link

This commit is contained in:
yequari 2025-02-26 21:41:34 -07:00
parent 69426a2056
commit 556fc8676c
8 changed files with 48 additions and 1 deletions

View File

@ -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

View File

@ -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.

View File

@ -1,3 +1,3 @@
- "Playing D&D"
- "Cleaning up my living space"
- "Building a Gundam kit"
- "Improving my physical fitness"

4
layouts/404.html Normal file
View File

@ -0,0 +1,4 @@
{{ define "main" }}
<h1>Not Found</h1>
<img src="/images/magnus.gif">
{{ end }}

BIN
static/images/magnus.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 KiB

BIN
static/richpreview.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

View File

@ -1,5 +1,6 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
{{ partial "head/meta.html" . }}
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
{{ partialCached "head/css.html" . }}
{{ partialCached "head/js.html" . }}

View File

@ -0,0 +1,18 @@
{{ with site.Params.Author }}
<meta name="author" content="{{ .}}">
{{ end }}
{{ with site.Params.Description }}
<meta name="description" content="{{ . }}">
<meta name="og:description" content="{{ . }}">
{{ end }}
{{ with site.Params.Keywords }}
<meta name="keywords" content="{{ delimit . ", " }}">
{{ end }}
<meta name="og:title" content="{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}">
<meta name="og:url" content="{{ site.BaseURL }}">
{{ with site.Params.rich_preview }}
<meta name="og:image" content="{{ . }}">
{{ end }}
{{ with site.Params.favicon }}
<link rel="icon" type="image/x-icon" href="{{ . }}">
{{ end }}