diff --git a/content/changelog.md b/content/changelog.md index f81d545..1d9d44a 100644 --- a/content/changelog.md +++ b/content/changelog.md @@ -6,11 +6,13 @@ description: "Maybe I should keep a log of all my site-related tinkering?" featured: false toc: false timeless: true +categories: /slashes --- *High-level list of config/layout changes to the site:* **2024-05-29:** - Display post descriptions (if set) on archive pages; otherwise fall back to summaries +- Add /slashes archive page **2024-05-27:** - Replace "powered by" links with slashpages diff --git a/content/colophon.md b/content/colophon.md index cc21d2d..9179cfb 100644 --- a/content/colophon.md +++ b/content/colophon.md @@ -6,8 +6,9 @@ description: "There's a lot that goes into this site. Let me tell you how it wor featured: false toc: true timeless: true +categories: /slashes --- -*I don't consider myself to be a web developer, but I've learned a *ton* through the process of building/tweaking/maintaining this site. The [colophon](https://indieweb.org/colophon) provides a quick overview of what powers `runtimeterror.dev`.* +*I don't consider myself to be a web developer, but I've learned a **ton** through the process of building/tweaking/maintaining this site. The [colophon](https://indieweb.org/colophon) provides a quick overview of what powers `runtimeterror.dev`.* ### This site... - is built with [Hugo](https://gohugo.io/) using the [risotto](https://github.com/joeroe/risotto) theme with many, many tweaks and customizations. diff --git a/content/homelab.md b/content/homelab.md index 8be61eb..3400f2f 100644 --- a/content/homelab.md +++ b/content/homelab.md @@ -4,10 +4,11 @@ date: "2024-05-26T21:30:51Z" lastmod: "2024-05-28" aliases: - playground -description: "The systems I use for fun." +description: "The systems I use for fun and enrichment." featured: false toc: true timeless: true +categories: /slashes --- *I enjoy tinkering with small technology projects, and I learn a ton from these experiments. I also self-host a number of apps/services from my home as well as various cloud environments. This page describes some of my technical playground.* diff --git a/content/save.md b/content/save.md index 941f93f..2a33a6f 100644 --- a/content/save.md +++ b/content/save.md @@ -6,6 +6,7 @@ description: "Referral links for products and services I use and heartily recomm featured: false toc: true timeless: true +categories: /slashes --- *This `/saves` page lists my referral/affiliate links for high-quality products and services that I use on a daily basis. These are things I frequently recommend to others anyway, but signing up with these links might save one or both of us some money.* diff --git a/content/uses.md b/content/uses.md index 7341f73..f9ddc8a 100644 --- a/content/uses.md +++ b/content/uses.md @@ -2,9 +2,10 @@ title: "/uses" date: "2024-05-29" # lastmod: {{ .Date | time.Format "2006-01-02" }} -description: "The hardware, software, and services which keep me going." +description: "The hardware, software, services, and gear which I use (almost) daily." toc: true timeless: true +categories: /slashes --- *Here's some of the stuff I use and how I use it.* diff --git a/layouts/partials/archive.html b/layouts/partials/archive.html index 9fb235f..7b8b8d3 100644 --- a/layouts/partials/archive.html +++ b/layouts/partials/archive.html @@ -7,7 +7,7 @@

{{ site.Params.indexTitle | markdownify }}

{{ else }}

{{ .Title | markdownify }}{{ if eq .Kind "term" }}  

- {{ with .Description }}{{ . }}
{{ else }}
{{ end }} + {{ if eq .Title "/Slashes" }}My collection of slashpages.
{{ else }}{{ with .Description }}{{ . }}
{{ else }}
{{ end }}{{ end }} {{ end }}{{ end }} {{ .Content }} @@ -43,7 +43,26 @@ {{ end }} {{- end }} {{- else }} - {{- range (.Paginate $pages).Pages }} + {{- if eq .Title "/Slashes" }} + {{- $sortedSlashes := sort $pages "Title" }} + {{- range $sortedSlashes }} + {{- $postDate := .Date.Format "2006-01-02" }} + {{- $updateDate := .Lastmod.Format "2006-01-02" }} +
+
+

{{ .Title | markdownify }}

+ +
+
+ {{ .Description }} +
+
+
+ {{- end }} + {{- else }} + {{- range (.Paginate $pages).Pages }} {{- $postDate := .Date.Format "2006-01-02" }} {{- $updateDate := .Lastmod.Format "2006-01-02" }}
@@ -58,6 +77,7 @@
+ {{- end }} + {{- template "_internal/pagination.html" . }} {{- end }} - {{- template "_internal/pagination.html" . }} {{- end }} \ No newline at end of file diff --git a/layouts/partials/aside.html b/layouts/partials/aside.html index 934ef3b..41a2c41 100644 --- a/layouts/partials/aside.html +++ b/layouts/partials/aside.html @@ -10,6 +10,17 @@ {{ if isset .Params "categories" }} {{$related := where .Site.RegularPages ".Params.categories" "eq" .Params.categories }} {{- $relatedLimit := default 8 .Site.Params.numberOfRelatedPosts }} +{{ if eq .Params.categories "/slashes" }} +

More {{ .Params.categories }}

+{{ $sortedPosts := sort $related "Title" }} + +{{ else }}

More {{ .Params.categories }}

+{{ end }}
{{ end }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index cde209f..6256028 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -1,5 +1,5 @@ -