diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-12-06 22:39:32 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-12-06 22:39:32 -0800 |
| commit | cabe10e0d1fb8e06367b61e6521d75c8301406de (patch) | |
| tree | bea62dac3cb5b319c40329c70a277134cd339691 /indieweb-micro | |
| parent | 1d7b20e02dd30cc084f008392e0ac146fe6359b1 (diff) | |
06-first-sdvx-18
Diffstat (limited to 'indieweb-micro')
| -rw-r--r-- | indieweb-micro/content/posts/06-first-sdvx-18/18.webp | bin | 0 -> 339632 bytes | |||
| -rw-r--r-- | indieweb-micro/content/posts/06-first-sdvx-18/index.md | 15 | ||||
| -rw-r--r-- | indieweb-micro/themes/MinIndie/layouts/shortcodes/hashtag.html | 3 | ||||
| -rw-r--r-- | indieweb-micro/themes/MinIndie/layouts/shortcodes/mention.html | 8 |
4 files changed, 26 insertions, 0 deletions
diff --git a/indieweb-micro/content/posts/06-first-sdvx-18/18.webp b/indieweb-micro/content/posts/06-first-sdvx-18/18.webp Binary files differnew file mode 100644 index 0000000..83768f7 --- /dev/null +++ b/indieweb-micro/content/posts/06-first-sdvx-18/18.webp diff --git a/indieweb-micro/content/posts/06-first-sdvx-18/index.md b/indieweb-micro/content/posts/06-first-sdvx-18/index.md new file mode 100644 index 0000000..20da6bd --- /dev/null +++ b/indieweb-micro/content/posts/06-first-sdvx-18/index.md @@ -0,0 +1,15 @@ +--- +title: "First MXM 18 Cleared!" +date: 2025-12-06T22:33:23-08:00 +slug: 2025-12-06-first-sdvx-18 +type: posts +draft: false +categories: + - games +tags: + - arcade +--- +Cleared my first 18 difficulty chart in {{< hashtag "sdvx" >}} + +Albeit its not a very difficult one, but I think I'm finally starting to chip away at the 17-18 difficulty wall. +{{< figure src="18.webp" alt="Sound Voltex Enchant 6 Clear" width="500" >}} diff --git a/indieweb-micro/themes/MinIndie/layouts/shortcodes/hashtag.html b/indieweb-micro/themes/MinIndie/layouts/shortcodes/hashtag.html new file mode 100644 index 0000000..5908132 --- /dev/null +++ b/indieweb-micro/themes/MinIndie/layouts/shortcodes/hashtag.html @@ -0,0 +1,3 @@ +{{ $tag := .Get 0 }} + +<a href="{{ .Site.BaseURL }}/tags/{{ strings.TrimPrefix "#" $tag | urlize }}" class="p-category">{{ if not (hasPrefix $tag "#") }}#{{ end }}{{ strings.TrimPrefix "#" $tag }}</a> diff --git a/indieweb-micro/themes/MinIndie/layouts/shortcodes/mention.html b/indieweb-micro/themes/MinIndie/layouts/shortcodes/mention.html new file mode 100644 index 0000000..13a5355 --- /dev/null +++ b/indieweb-micro/themes/MinIndie/layouts/shortcodes/mention.html @@ -0,0 +1,8 @@ +{{ $username := .Get 0 }} +{{ $url := .Get 1 }} + +{{ if not $url }} + {{ errorf "mention shortcode requires both username and URL parameters. Usage: {{< mention \"username\" \"https://example.com/@username\" >}}" }} +{{ end }} + +<a href="{{ $url }}" class="u-in-reply-to h-card">@{{ strings.TrimPrefix "@" $username }}</a> |
