From 05567a11ae23ff650268b032ae380dac0980f272 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 20 Oct 2021 12:37:19 +0200 Subject: [PATCH] posts: add 'description' back to all front matters The upstream theme has decided to revert [1] the modification that made me decide to remove them. On top of that, another commit has made the `description` field useful for the `` tag [2]. This reverts commit 672c4fa6be10b16e714fc594505588214a4eaa43. [1]: https://github.com/Mitrichius/hugo-theme-anubis/pull/108 [2]: https://github.com/Mitrichius/hugo-theme-anubis/pull/107 --- content/posts/2020-07-14-hello-world/index.md | 1 + content/posts/2020-07-15-the-drone-ci-debacle/index.md | 1 + content/posts/2020-07-16-generic-flyweight-cpp/index.md | 1 + content/posts/2020-07-22-polymorphic-flyweight-cpp/index.md | 1 + content/posts/2020-12-07-git-basics/index.md | 1 + content/posts/2021-01-15-plaintext-accounting/index.md | 1 + content/posts/2021-02-09-the-great-nix-exode/index.md | 1 + content/posts/2021-10-01-magic-conversions-in-c++/index.md | 1 + 8 files changed, 8 insertions(+) diff --git a/content/posts/2020-07-14-hello-world/index.md b/content/posts/2020-07-14-hello-world/index.md index 7ddb401..805eb07 100644 --- a/content/posts/2020-07-14-hello-world/index.md +++ b/content/posts/2020-07-14-hello-world/index.md @@ -2,6 +2,7 @@ title: "Hello World" date: 2020-07-14T18:07:56+02:00 draft: false +description: "Test post please ignore" tags: - test categories: diff --git a/content/posts/2020-07-15-the-drone-ci-debacle/index.md b/content/posts/2020-07-15-the-drone-ci-debacle/index.md index 0009fe9..93312f3 100644 --- a/content/posts/2020-07-15-the-drone-ci-debacle/index.md +++ b/content/posts/2020-07-15-the-drone-ci-debacle/index.md @@ -2,6 +2,7 @@ title: "The Drone CI debacle" date: 2020-07-15T11:04:45+02:00 draft: false # I don't care for draft mode, git has branches for that +description: "The misadventures of deploying my blog" tags: - hugo - drone diff --git a/content/posts/2020-07-16-generic-flyweight-cpp/index.md b/content/posts/2020-07-16-generic-flyweight-cpp/index.md index 420ad35..303b3db 100644 --- a/content/posts/2020-07-16-generic-flyweight-cpp/index.md +++ b/content/posts/2020-07-16-generic-flyweight-cpp/index.md @@ -2,6 +2,7 @@ title: "Generic Flyweight in C++" date: 2020-07-16T14:28:52+02:00 draft: false # I don't care for draft mode, git has branches for that +description: "A no-boilerplate flyweight pattern" tags: - design pattern - C++ diff --git a/content/posts/2020-07-22-polymorphic-flyweight-cpp/index.md b/content/posts/2020-07-22-polymorphic-flyweight-cpp/index.md index 7dc3e6c..5ff4b1f 100644 --- a/content/posts/2020-07-22-polymorphic-flyweight-cpp/index.md +++ b/content/posts/2020-07-22-polymorphic-flyweight-cpp/index.md @@ -2,6 +2,7 @@ title: "Polymorphic Flyweight in C++" date: 2020-07-22T16:16:39+0200 draft: false # I don't care for draft mode, git has branches for that +description: "A no-boilerplate flyweight pattern" tags: - design pattern - C++ diff --git a/content/posts/2020-12-07-git-basics/index.md b/content/posts/2020-12-07-git-basics/index.md index 6cb91d8..daa3682 100644 --- a/content/posts/2020-12-07-git-basics/index.md +++ b/content/posts/2020-12-07-git-basics/index.md @@ -2,6 +2,7 @@ title: "Git Basics" date: 2020-12-07 18:54:31+0100 draft: false # I don't care for draft mode, git has branches for that +description: "The next step after the basics" tags: - git - cli diff --git a/content/posts/2021-01-15-plaintext-accounting/index.md b/content/posts/2021-01-15-plaintext-accounting/index.md index f440c96..c018042 100644 --- a/content/posts/2021-01-15-plaintext-accounting/index.md +++ b/content/posts/2021-01-15-plaintext-accounting/index.md @@ -2,6 +2,7 @@ title: "Plaintext Accounting, beancount, and fava" date: 2021-01-15T15:54:51+01:00 draft: false # I don't care for draft mode, git has branches for that +description: "Or the story of my fall into systematically logging my expenses" tags: - accounting - cli diff --git a/content/posts/2021-02-09-the-great-nix-exode/index.md b/content/posts/2021-02-09-the-great-nix-exode/index.md index 02b326c..946349d 100644 --- a/content/posts/2021-02-09-the-great-nix-exode/index.md +++ b/content/posts/2021-02-09-the-great-nix-exode/index.md @@ -2,6 +2,7 @@ title: "The Great Nix Exode" date: 2021-02-09T20:38:51+01:00 draft: false # I don't care for draft mode, git has branches for that +description: "My journey into declarative infrastructure" tags: - self-hosting - nix diff --git a/content/posts/2021-10-01-magic-conversions-in-c++/index.md b/content/posts/2021-10-01-magic-conversions-in-c++/index.md index c8d5f76..44f26bf 100644 --- a/content/posts/2021-10-01-magic-conversions-in-c++/index.md +++ b/content/posts/2021-10-01-magic-conversions-in-c++/index.md @@ -2,6 +2,7 @@ title: "Magic Conversions in C++" date: 2021-10-01T14:46:14+02:00 draft: false # I don't care for draft mode, git has branches for that +description: "How to get the compiler to infer the correct conversion" tags: - c++ - design-pattern