summaryrefslogtreecommitdiff
path: root/themes/blowfish/exampleSite/config/_default/hugo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'themes/blowfish/exampleSite/config/_default/hugo.toml')
-rw-r--r--themes/blowfish/exampleSite/config/_default/hugo.toml68
1 files changed, 68 insertions, 0 deletions
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