From 3fb0cb9f8c18728f4495e85d819931c265534908 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 4 Jan 2021 15:34:41 +0100 Subject: [PATCH] config: add Atom Feed component configuration --- config.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/config.yaml b/config.yaml index abd5e0d..a1d5065 100644 --- a/config.yaml +++ b/config.yaml @@ -2,7 +2,9 @@ baseURL: "https://belanyi.fr/" languageCode: "en-us" title: "Ambroisie's blog" -theme: "anubis" +theme: + - "hugo-atom-feed" + - "anubis" paginate: 5 disqusShortname: "" googleAnalytics: "" @@ -39,6 +41,16 @@ author: permalinks: posts: /:year/:month/:day/:title/ +outputs: + # /atom.xml + home: [ "HTML", "RSS", "ATOM" ] + # /posts/atom.xml + section: [ "HTML", "RSS", "ATOM" ] + # /tags/mytag/atom.xml + taxonomy: [ "HTML", "RSS", "ATOM" ] + +ignoreErrors: + - "error-output-taxonomy" params: author: "Bruno BELANYI"