diff options
author | mms <michal@sapka.me> | 2023-12-20 23:18:22 +0100 |
---|---|---|
committer | mms <michal@sapka.me> | 2023-12-20 23:18:22 +0100 |
commit | bb4641356d00ec204583fda58ba3f3376b478efd (patch) | |
tree | cf26e862eeb1c9f42299c505865bd560da42c4f7 /layouts/partials/article_index.html | |
parent | 52a93cdffe6ac624bd87f3ca4130b2f4c25fd0d1 (diff) |
feat: move articles to ox-hugo + gen content
Diffstat (limited to 'layouts/partials/article_index.html')
-rw-r--r-- | layouts/partials/article_index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/article_index.html b/layouts/partials/article_index.html index 77d6db8..2fd2837 100644 --- a/layouts/partials/article_index.html +++ b/layouts/partials/article_index.html @@ -1,6 +1,6 @@ {{ .Page.Content }} {{- $article_category := slice "article" }} -{{- range (where .Site.RegularPages ".Params.category" "intersect" $article_category) }} +{{- range (where .Site.RegularPages ".Params.categories" "intersect" $article_category) }} {{- partial "partials/article_list_abstract_item.html" . }} {{- end }} |