diff options
-rw-r--r-- | hugo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..4e6a4f7 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,24 @@ +baseURL = 'https://iloveliquids.com/' +languageCode = 'en-us' +title = 'I Love Liquids' + +[params] + # "relatedtext" is the text that appears above the tag list at the bottom of pages. + relatedtext = "Related" + favicon = "/images/gifs/USflag.gif" + + #list items + datesinlist = true + authorsinlist = true + + #footer items + nextprev = true + taglist = true + showrss = true + +[taxonomies] + tag = "tags" + +[markup.goldmark.renderer] + unsafe = true # Allow HTML in md files + |