commit 5fb58719af26c49a8955d82c729c7de3e80f081f
parent 5c8bba4533198443ee742cf1d155ff11c2e94574
Author: MichaĆ M. Sapka <michal@sapka.me>
Date: Wed, 17 May 2023 18:45:46 +0200
fix: categories
Diffstat:
3 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/content/2023/human-web.md b/content/2023/human-web.md
@@ -1,6 +1,6 @@
---
title: "Human Web"
-category: "varia"
+category: "internet"
abstract: Can we save the Web?
date: 2023-05-15T17:12:09+02:00
year: 2023
diff --git a/content/2023/using-rss-to-stop-youtube-homepage-induced-damage.md b/content/2023/using-rss-to-stop-youtube-homepage-induced-damage.md
@@ -1,6 +1,6 @@
---
title: "Using RSS to stop Youtube homepage-induced damage"
-category: varia
+category: internet
abstract: RSS is still the best way to follow on the interwebs
date: 2023-05-04T16:31:18+02:00
year: 2023
diff --git a/layouts/shortcodes/categories.html b/layouts/shortcodes/categories.html
@@ -0,0 +1,7 @@
+{{ range $name, $taxonomy := .Site.Taxonomies.category }}
+ {{ $cnt := .Count }}
+ {{ with $.Site.GetPage (printf "/category/%s" $name) }}
+ <a href={{ .RelPermalink }} title="All pages with tag <i>{{$name}}</i>">{{$name}}</a>
+ <sup>{{$cnt}}</sup>
+ {{end}}
+{{ end }}