minor tweaks + new link
This commit is contained in:
parent
69426a2056
commit
556fc8676c
@ -5,6 +5,7 @@ theme: desert-breeze
|
|||||||
enableGitInfo: true
|
enableGitInfo: true
|
||||||
params:
|
params:
|
||||||
author: yequari
|
author: yequari
|
||||||
|
description: yequari's homepage
|
||||||
# about: "I write code and occasionally blog posts."
|
# about: "I write code and occasionally blog posts."
|
||||||
webmentions: https://webmention.io/yequari.com/webmention
|
webmentions: https://webmention.io/yequari.com/webmention
|
||||||
pingbacks: https://webmention.io/yequari.com/xmlrpc
|
pingbacks: https://webmention.io/yequari.com/xmlrpc
|
||||||
@ -12,6 +13,13 @@ params:
|
|||||||
email: "yequari@32bit.cafe"
|
email: "yequari@32bit.cafe"
|
||||||
xmpp: "yequari@omg.lol"
|
xmpp: "yequari@omg.lol"
|
||||||
mastodon: "retro.pizza/@yequari"
|
mastodon: "retro.pizza/@yequari"
|
||||||
|
keywords:
|
||||||
|
- smallweb
|
||||||
|
- personal websites
|
||||||
|
- computing
|
||||||
|
- programming
|
||||||
|
favicon: /favicon.png
|
||||||
|
rich_preview: /images/richpreview.jpg
|
||||||
taxonomies:
|
taxonomies:
|
||||||
category: categories
|
category: categories
|
||||||
tag: tags
|
tag: tags
|
||||||
|
16
content/links/3ds-streetpass.md
Normal file
16
content/links/3ds-streetpass.md
Normal 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.
|
@ -1,3 +1,3 @@
|
|||||||
- "Playing D&D"
|
- "Playing D&D"
|
||||||
- "Cleaning up my living space"
|
- "Building a Gundam kit"
|
||||||
- "Improving my physical fitness"
|
- "Improving my physical fitness"
|
||||||
|
4
layouts/404.html
Normal file
4
layouts/404.html
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<h1>Not Found</h1>
|
||||||
|
<img src="/images/magnus.gif">
|
||||||
|
{{ end }}
|
BIN
static/images/magnus.gif
Normal file
BIN
static/images/magnus.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 361 KiB |
BIN
static/richpreview.jpg
Normal file
BIN
static/richpreview.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 114 KiB |
@ -1,5 +1,6 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width">
|
<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>
|
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
|
||||||
{{ partialCached "head/css.html" . }}
|
{{ partialCached "head/css.html" . }}
|
||||||
{{ partialCached "head/js.html" . }}
|
{{ partialCached "head/js.html" . }}
|
||||||
|
18
themes/desert-breeze/layouts/partials/head/meta.html
Normal file
18
themes/desert-breeze/layouts/partials/head/meta.html
Normal 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 }}
|
Loading…
x
Reference in New Issue
Block a user