From b09a8bd8d8d0772be55dbf647a35be7d4ad7ee65 Mon Sep 17 00:00:00 2001 From: Leon Mika Date: Sat, 1 Feb 2025 11:59:10 +1100 Subject: [PATCH] Fixed missing URL value in Hugo template --- providers/hugo/tmpls/config.toml.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/hugo/tmpls/config.toml.tmpl b/providers/hugo/tmpls/config.toml.tmpl index c74445d..8960ff4 100644 --- a/providers/hugo/tmpls/config.toml.tmpl +++ b/providers/hugo/tmpls/config.toml.tmpl @@ -1,4 +1,4 @@ -baseURL = {{.Site.URL | printf "%q"}} +baseURL = 'https://example.com/' languageCode = 'en-us' title = {{.Site.Title | printf "%q"}}