31 lines
606 B
TOML
31 lines
606 B
TOML
|
# -- Site Configuration --
|
|||
|
# Refer to the theme docs for more details about each of these parameters.
|
|||
|
# https://nunocoracao.github.io/blowfish/docs/getting-started/
|
|||
|
|
|||
|
theme = "blowfish"
|
|||
|
# baseURL = "https://your_domain.com/"
|
|||
|
defaultContentLanguage = "en"
|
|||
|
|
|||
|
enableRobotsTXT = true
|
|||
|
paginate = 20
|
|||
|
summaryLength = 30
|
|||
|
|
|||
|
buildDrafts = false
|
|||
|
buildFuture = false
|
|||
|
|
|||
|
# googleAnalytics = "G-XXXXXXXXX"
|
|||
|
|
|||
|
[taxonomies]
|
|||
|
tag = "tags"
|
|||
|
category = "categories"
|
|||
|
author = "authors"
|
|||
|
series = "series"
|
|||
|
|
|||
|
[sitemap]
|
|||
|
changefreq = 'daily'
|
|||
|
filename = 'sitemap.xml'
|
|||
|
priority = 0.5
|
|||
|
|
|||
|
[outputs]
|
|||
|
home = ["HTML", "RSS", "JSON"]
|