summaryrefslogtreecommitdiff
path: root/config/_default/hugo.toml
diff options
context:
space:
mode:
authorIuri <iuricube@gmail.com>2026-01-04 18:00:10 +0100
committerIuri <iuricube@gmail.com>2026-01-04 18:00:10 +0100
commitdeadf4d987f599efc459a8192f50aa1bbbe869ef (patch)
treee5f20932671e0ae1411deca7ec5c81b169385db6 /config/_default/hugo.toml
parent4b2df85841a71db8038e6d425bb4a6890234f63b (diff)
Public files
Diffstat (limited to 'config/_default/hugo.toml')
-rw-r--r--config/_default/hugo.toml69
1 files changed, 69 insertions, 0 deletions
diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml
new file mode 100644
index 0000000..87eb814
--- /dev/null
+++ b/config/_default/hugo.toml
@@ -0,0 +1,69 @@
+# -- Site Configuration --
+# Refer to the theme docs for more details about each of these parameters.
+# https://blowfish.page/docs/getting-started/
+
+theme = "blowfish" # UNCOMMENT THIS LINE
+baseURL = "https://www.antico.dev/"
+defaultContentLanguage = "en"
+
+# pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles
+
+enableRobotsTXT = true
+summaryLength = 0
+
+buildDrafts = false
+buildFuture = false
+
+enableEmoji = true
+
+# googleAnalytics = "G-XXXXXXXXX"
+
+[pagination]
+ pagerSize = 100
+
+[imaging]
+ anchor = 'Center'
+
+[taxonomies]
+ tag = "tags"
+ category = "categories"
+ author = "authors"
+ series = "series"
+
+[sitemap]
+ changefreq = 'daily'
+ 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