This commit is contained in:
ch0ccyra1n 2025-03-17 15:37:27 -07:00
parent d998a0c267
commit 315ef80399
10 changed files with 40 additions and 9 deletions

6
archetypes/mentions.md Normal file
View file

@ -0,0 +1,6 @@
---
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
date: {{ .Date }}
draft: true
inReplyTo: 'https://example.org'
---

View file

@ -6,7 +6,7 @@ This is my website (***you*** should have one too. even if you don't think it's
## In my network... ## In my network...
{{< rawhtml >}} {{< rawhtml >}}
<a href="https://emeraldsocial.org/@ch0ccyra1n"><img style="display: inline; width: 20px;" src="https://us-southeast-1.linodeobjects.com/emeraldsocial/accounts/avatars/109/567/779/541/278/445/original/c0529048fe098ceb.png" alt="Emerald Social icon">Mastodon</a> <a rel="me" href="https://emeraldsocial.org/@ch0ccyra1n"><img style="display: inline; width: 20px;" src="https://us-southeast-1.linodeobjects.com/emeraldsocial/accounts/avatars/109/567/779/541/278/445/original/c0529048fe098ceb.png" alt="Emerald Social icon">Mastodon</a>
<br> <br>
<a href="https://forge.planetexpress.me/ch0ccyra1n"><img style="display: inline; width: 20px;" src="https://forge.planetexpress.me/assets/img/favicon.png" alt="Forgejo icon">My Forgejo</a> Where I publish code <a href="https://forge.planetexpress.me/ch0ccyra1n"><img style="display: inline; width: 20px;" src="https://forge.planetexpress.me/assets/img/favicon.png" alt="Forgejo icon">My Forgejo</a> Where I publish code
<br> <br>

View file

@ -0,0 +1,7 @@
---
date: 2025-03-17T00:05:03-07:00
draft: false
inReplyTo: 'https://bsky.app/profile/ziondood.bsky.social/post/3ktsycix6b326'
---
This was such an awesome video! It inspired me to start my own StreetPass challenge!

View file

@ -0,0 +1,8 @@
---
date: 2025-03-16T23:26:39-07:00
draft: false
inReplyTo: 'https://emeraldsocial.org/@ch0ccyra1n/110521039644173825'
---
cute! :3

View file

@ -0,0 +1,7 @@
---
date: 2025-03-16T23:41:55-07:00
draft: false
inReplyTo: 'https://ch0ccyra1n.planetexpress.me/posts/my-thoughts-on-world-of-goo/'
---
Looking back at this, I think I may have been a bit nostalgic 🥴

View file

@ -1,9 +1,7 @@
--- ---
title: 'RE: On The Beginnings of Support for Other Handhelds (and Other SteamOS 3.7.0 Updates)'
date: 2025-03-16T23:11:54-07:00 date: 2025-03-16T23:11:54-07:00
draft: false draft: false
inReplyTo: 'https://blog.gardinerbryant.com/2025/on-the-beginnings-of-support-for-other-handhelds-and-other-steamos-3-7-0-updates/'
--- ---
[](https://blog.gardinerbryant.com/2025/on-the-beginnings-of-support-for-other-handhelds-and-other-steamos-3-7-0-updates/)
Glad to see that there's going to be hopefully official support for new devices. While I'm personally happy with my Deck, it's always a good thing when more devices can use SteamOS. Also, congrats on setting up your new blog and indieweb! Glad to see that there's going to be hopefully official support for new devices. While I'm personally happy with my Deck, it's always a good thing when more devices can use SteamOS. Also, congrats on setting up your new blog and indieweb!

View file

@ -1,13 +1,11 @@
{{ define "main" }} {{ define "main" }}
<article class="h-entry"> <article class="h-entry">
{{ if $.Title }}
<h1 class="p-name">{{ .Title }}</h1> <h1 class="p-name">{{ .Title }}</h1>
<p class="p-author" style="display: none;">{{ .Site.Author.Name }}</p>
<hr> <hr>
{{ end }}
{{ partial "metadata.html" . }} {{ partial "metadata.html" . }}
<br><br> <br><br>
{{ if $.Params.inReplyTo }}
<p rel="in-reply-to" class="u-in-reply-to">In Reply to: {{ .Params.inReplyTo }}</p>
{{end}}
{{ if $.Params.cws }} {{ if $.Params.cws }}
<p>Content Warning: {{ range $i, $e := .Params.cws -}}{{- if $i -}}, {{ end -}}{{ $e | humanize }} <p>Content Warning: {{ range $i, $e := .Params.cws -}}{{- if $i -}}, {{ end -}}{{ $e | humanize }}
{{- end -}}</p> {{- end -}}</p>
@ -16,11 +14,13 @@
<div class="e-content"> <div class="e-content">
{{ .Content }} {{ .Content }}
</div> </div>
<a class="u-bridgy-fed" href="https://fed.brid.gy/" hidden="from-humans"></a>
</label> </label>
{{ else }} {{ else }}
<div class="e-content"> <div class="e-content">
{{ .Content }} {{ .Content }}
</div> </div>
<a class="u-bridgy-fed" href="https://fed.brid.gy/" hidden="from-humans"></a>
{{ end }} {{ end }}
</article> </article>
{{ partial "webmentions.html" . }} {{ partial "webmentions.html" . }}

View file

@ -3,6 +3,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/css/style.css"> <link rel="stylesheet" type="text/css" href="/css/style.css">
<link rel="webmention" href="https://webmention.io/ch0ccyra1n.gitlab.io/webmention"/> <link rel="webmention" href="https://webmention.io/ch0ccyra1n.gitlab.io/webmention"/>
<link rel="alternate" type="application/rss+xml" title="RSS" href="https://ch0ccyra1n.planetexpress.me/feed">
{{ $title := print .Site.Title " | " .Title }} {{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }} {{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
<title>{{ $title }}</title> <title>{{ $title }}</title>

View file

@ -1,9 +1,14 @@
<a class="u-url" href="{{ .Permalink }}"></a> <a class="u-url" href="{{ .Permalink }}"></a>
<a style="display: none;" class="p-author h-card" href="https://ch0ccyra1n.planetexpress.me">ch0ccyra1n <img class="u-photo" src="/images/profile.png" />
</a>
{{ if .PublishDate }} {{ if .PublishDate }}
{{ $dateTime := .PublishDate.Format "2006-01-02" }} {{ $dateTime := .PublishDate.Format "2006-01-02" }}
{{ $dateFormat := .Site.Params.dateFormat | default "Jan 2, 2006" }} {{ $dateFormat := .Site.Params.dateFormat | default "Jan 2, 2006" }}
<p><time class="dt-published" datetime="{{ $dateTime }}">{{ .PublishDate.Format $dateFormat }}</time></p> <p><time class="dt-published" datetime="{{ $dateTime }}">{{ .PublishDate.Format $dateFormat }}</time></p>
{{ end }} {{ end }}
{{ if $.Params.inReplyTo }}
<p>In Reply to: <a rel="in-reply-to" class="u-in-reply-to" href="{{ .Params.inReplyTo}}">{{ .Params.inReplyTo }}</a></p>
{{end}}
{{ with .Params.tags }} {{ with .Params.tags }}
{{ range . }} {{ range . }}
{{ $href := print (absURL "tags/") (urlize .) }} {{ $href := print (absURL "tags/") (urlize .) }}

View file

@ -1,4 +1,3 @@
<a class="u-bridgy-fed" href="https://fed.brid.gy/" hidden="from-humans"></a>
<h3>Replies</h3> <h3>Replies</h3>
<div id="webmentions"></div> <div id="webmentions"></div>
<details> <details>