From 5fb58719af26c49a8955d82c729c7de3e80f081f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20M=2E=20Sapka?= Date: Wed, 17 May 2023 18:45:46 +0200 Subject: fix: categories --- content/2023/human-web.md | 2 +- content/2023/using-rss-to-stop-youtube-homepage-induced-damage.md | 2 +- layouts/shortcodes/categories.html | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 layouts/shortcodes/categories.html diff --git a/content/2023/human-web.md b/content/2023/human-web.md index 327284b..f41896a 100644 --- 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 index 5e9b0ef..1065b29 100644 --- 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 new file mode 100644 index 0000000..c114f15 --- /dev/null +++ b/layouts/shortcodes/categories.html @@ -0,0 +1,7 @@ +{{ range $name, $taxonomy := .Site.Taxonomies.category }} + {{ $cnt := .Count }} + {{ with $.Site.GetPage (printf "/category/%s" $name) }} + {{$name}} + {{$cnt}} + {{end}} +{{ end }} -- cgit v1.2.3