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/private-contact-discovery/index.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'content/blog/private-contact-discovery/index.rst') diff --git a/content/blog/private-contact-discovery/index.rst b/content/blog/private-contact-discovery/index.rst index 797de50..386bd6e 100644 --- a/content/blog/private-contact-discovery/index.rst +++ b/content/blog/private-contact-discovery/index.rst @@ -1,11 +1,10 @@ --- title: "Private Contact Discovery" date: 2019-06-22T10:30:00+08:00 +summary: > + I gave a short introduction into Private Contact Discovery protocols at our university workgroup. --- -Private Contact Discovery -========================= - Private Contact Discovery (PCD) is the formal name for the problem modern smartphone messenger applications have on installation: Given a user's address book, find out which of their contacts also use the same messenger without the messenger's servers learning anything about the user's address book. The widespread non-private way to do this is to -- cgit