commit 19d46cf6c2ad981763628ff42fff39e90ee4c876 parent 21e573c612f37b2578d345f952cf014c3657886f Author: Eamon Caddigan <eamon.caddigan@gmail.com> Date: Sun, 1 Dec 2024 14:36:15 -0800 Rename config file and add missing baseURL param hugo.yaml is preferred to config.yaml as of Hugo v.0.109.0 Diffstat:
D | config/_default/config.yml | | | 33 | --------------------------------- |
A | config/_default/hugo.yaml | | | 34 | ++++++++++++++++++++++++++++++++++ |
2 files changed, 34 insertions(+), 33 deletions(-)
diff --git a/config/_default/config.yml b/config/_default/config.yml @@ -1,33 +0,0 @@ -theme: 'readable' -title: 'Potentially Useful' - -languages: - en: - languageName: English - menu: - main: - - name: All Posts - url: /posts/ - weight: 10 - - name: Categories - url: /categories/ - weight: 2 - - name: Home - url: / - weight: 1 - -frontmatter: - lastmod: - - lastmod - - date - - publishDate - -ignoreFiles: - - "\\.Rmd$" - -outputs: - home: - - HTML - section: - - HTML - - RSS diff --git a/config/_default/hugo.yaml b/config/_default/hugo.yaml @@ -0,0 +1,34 @@ +theme: 'readable' +title: 'Potentially Useful' +baseURL: 'https://www.eamoncaddigan.net/' + +languages: + en: + languageName: English + menu: + main: + - name: All Posts + url: /posts/ + weight: 10 + - name: Categories + url: /categories/ + weight: 2 + - name: Home + url: / + weight: 1 + +frontmatter: + lastmod: + - lastmod + - date + - publishDate + +ignoreFiles: + - "\\.Rmd$" + +outputs: + home: + - HTML + section: + - HTML + - RSS