From 16655c00e0a84f6bfe58870c918fbfc016fe58ec Mon Sep 17 00:00:00 2001 From: jaseg Date: Mon, 30 Jun 2025 15:35:25 +0200 Subject: Fix hugo layout in hugo > ~0.130.0 For some reason, newer hugo versions have trouble with .summary, and on some pages where .summary is not defined in the page header metadata, when rendering the page as a preview card, hugo swallows the card's closing tag. Such a weird bug, we now just work around it by explicitly setting the .summary meta on pages that cause this bug(?) to surface. --- content/blog/multichannel-led-driver/index.rst | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'content/blog/multichannel-led-driver/index.rst') diff --git a/content/blog/multichannel-led-driver/index.rst b/content/blog/multichannel-led-driver/index.rst index c4e17b8..f157458 100644 --- a/content/blog/multichannel-led-driver/index.rst +++ b/content/blog/multichannel-led-driver/index.rst @@ -1,6 +1,10 @@ --- title: "32-Channel LED tape driver" date: 2018-05-02T11:31:14+02:00 +summary: > + Together, a friend and I outfitted the small staircase at Berlin's Chaos Computer Club with nice, shiny RGB-WW LED + tape for ambient lighting. For this installation, I made a 32-channel LED driver that achieves high dynamic range on + all 32 channels using a cheap microcontroller by using Binary Code Modulation. --- Theoretical basics -- cgit