From 56d1b99b3b990e6e3a774835fb868259c73d0674 Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Fri, 6 Dec 2024 22:03:52 -0500 Subject: [PATCH] switch config from toml to yml (preferred by PaperMod) --- hugo.toml | 6 ------ hugo.yml | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) delete mode 100644 hugo.toml create mode 100644 hugo.yml diff --git a/hugo.toml b/hugo.toml deleted file mode 100644 index d934a7b..0000000 --- a/hugo.toml +++ /dev/null @@ -1,6 +0,0 @@ -baseURL = '/' -languageCode = 'en-us' -title = 'The Dataverse Project' -theme = 'PaperMod' -[params] -showBreadCrumbs = true diff --git a/hugo.yml b/hugo.yml new file mode 100644 index 0000000..bbc338b --- /dev/null +++ b/hugo.yml @@ -0,0 +1,6 @@ +baseURL: / +languageCode: en-us +title: The Dataverse Project +theme: PaperMod +params: + showBreadCrumbs: true