diff --git a/config/_default/config.yaml b/config/_default/config.yaml new file mode 100644 index 00000000..f3c02fbb --- /dev/null +++ b/config/_default/config.yaml @@ -0,0 +1,9 @@ +baseURL: https://richard-dern.fr +languageCode: fr-FR +defaultContentLanguage: "fr" +title: Richard Dern +copyright: "© Richard Dern" +disableHugoGeneratorInject: true +enableEmoji: true +timeZone: Europe/Paris +theme: default diff --git a/config/_default/frontmatter.yaml b/config/_default/frontmatter.yaml new file mode 100644 index 00000000..767a6940 --- /dev/null +++ b/config/_default/frontmatter.yaml @@ -0,0 +1,4 @@ +date: + - "date" + - "publishDate" + - "lastmod" diff --git a/config/_default/hugo.yaml b/config/_default/hugo.yaml deleted file mode 100644 index 69539963..00000000 --- a/config/_default/hugo.yaml +++ /dev/null @@ -1,31 +0,0 @@ -baseURL: https://richard-dern.fr -languageCode: fr-FR -defaultContentLanguage: "fr" -title: Richard Dern -copyright: "© Richard Dern" -disableHugoGeneratorInject: true -enableEmoji: true -timeZone: Europe/Paris -theme: default -frontmatter: - date: ["date", "publishDate", "lastmod"] -markup: - goldmark: - parser: - wrapStandAloneImageWithinParagraph: false - renderer: - unsafe: true - tableOfContents: - ordered: true - highlight: - style: modus-vivendi -services: - rss: - limit: 10 -outputs: - home: - - html - - rss - section: html - taxonomy: html - term: html diff --git a/config/_default/markup.yaml b/config/_default/markup.yaml new file mode 100644 index 00000000..3b7940b7 --- /dev/null +++ b/config/_default/markup.yaml @@ -0,0 +1,9 @@ +goldmark: + parser: + wrapStandAloneImageWithinParagraph: false + renderer: + unsafe: true +tableOfContents: + ordered: true +highlight: + style: modus-vivendi diff --git a/config/_default/outputs.yaml b/config/_default/outputs.yaml new file mode 100644 index 00000000..a70e98a3 --- /dev/null +++ b/config/_default/outputs.yaml @@ -0,0 +1,6 @@ +home: + - html + - rss +section: html +taxonomy: html +term: html diff --git a/config/_default/services.yaml b/config/_default/services.yaml new file mode 100644 index 00000000..2d877e8c --- /dev/null +++ b/config/_default/services.yaml @@ -0,0 +1,2 @@ +rss: + limit: 10