From e77051ccc4b47951bfa4fde2be436b1bb2fb113b Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Sun, 28 Apr 2024 17:33:09 +0200 Subject: use https://github.com/nunocoracao/blowfish.git --- .../blowfish/exampleSite/config/_default/hugo.toml | 68 ++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 themes/blowfish/exampleSite/config/_default/hugo.toml (limited to 'themes/blowfish/exampleSite/config/_default/hugo.toml') diff --git a/themes/blowfish/exampleSite/config/_default/hugo.toml b/themes/blowfish/exampleSite/config/_default/hugo.toml new file mode 100644 index 0000000..d058b6d --- /dev/null +++ b/themes/blowfish/exampleSite/config/_default/hugo.toml @@ -0,0 +1,68 @@ +# -- Site Configuration -- +# Refer to the theme docs for more details about each of these parameters. +# https://blowfish.page/docs/getting-started/ + +theme = "blowfish" +baseURL = "https://localhost:1313" +defaultContentLanguage = "en" +disableLanguages = [] #to allow translation work requiring shipping to production + +# pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles + +enableRobotsTXT = true +paginate = 100 +summaryLength = 30 +hasCJKLanguage = true + +buildDrafts = false +buildFuture = false + + +googleAnalytics = "G-PEDMYR1V0K" + +[imaging] + anchor = 'Center' + +[taxonomies] + tag = "tags" + category = "categories" + author = "authors" + series = "series" + +[sitemap] + changefreq = 'always' + filename = 'sitemap.xml' + priority = 0.5 + +[outputs] + home = ["HTML", "RSS", "JSON"] + +[related] + threshold = 0 + toLower = false + + [[related.indices]] + name = "tags" + weight = 100 + + [[related.indices]] + name = "categories" + weight = 100 + + [[related.indices]] + name = "series" + weight = 50 + + [[related.indices]] + name = "authors" + weight = 20 + + [[related.indices]] + name = "date" + weight = 10 + + [[related.indices]] + applyFilter = false + name = 'fragmentrefs' + type = 'fragments' + weight = 10 -- cgit v1.2.3