From 2fd22e30ce176d8d8a641fd371ad1623b082eaaf Mon Sep 17 00:00:00 2001 From: jaseg Date: Fri, 6 Oct 2023 14:35:32 +0200 Subject: template: Make projects sort by date --- content/projects/_index.rst | 1 + content/projects/kimesh/index.rst | 1 + themes/conspiracy/layouts/index.html | 6 +++--- themes/conspiracy/layouts/partials/card.html | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/content/projects/_index.rst b/content/projects/_index.rst index c975627..9f9d49b 100644 --- a/content/projects/_index.rst +++ b/content/projects/_index.rst @@ -1,5 +1,6 @@ --- title: Projects +hide_date: true --- I maintain a number of open-source projects. Most of these I started out of some personal need or interest. I strive to keep all of them up to date and maintained, so if you notice an issue with one of them, please diff --git a/content/projects/kimesh/index.rst b/content/projects/kimesh/index.rst index 7688757..8613e3c 100644 --- a/content/projects/kimesh/index.rst +++ b/content/projects/kimesh/index.rst @@ -1,5 +1,6 @@ --- title: "KiMesh" +date: 2023-10-04T23:42:00+02:00 external_links: - name: Sources url: "https://git.jaseg.de/kimesh.git" diff --git a/themes/conspiracy/layouts/index.html b/themes/conspiracy/layouts/index.html index ab68f27..808ddc8 100644 --- a/themes/conspiracy/layouts/index.html +++ b/themes/conspiracy/layouts/index.html @@ -9,10 +9,10 @@ {{- end }} - {{- range site.Params.homepage_categories }} + {{- range $config := site.Params.homepage_categories }}

{{ .title }}

- {{- range first .count (where site.RegularPages "Section" "==" .key) }} - {{ partial "card.html" . }} + {{- range $entry := first $config.count (where site.RegularPages "Section" "==" $config.key) }} + {{ partial "card.html" $entry }} {{- end }}