36 lines
654 B
TOML
36 lines
654 B
TOML
|
# -- 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://staging.everun.club/"
|
|||
|
defaultContentLanguage = "ja"
|
|||
|
hasCJKLanguage = true
|
|||
|
|
|||
|
enableRobotsTXT = true
|
|||
|
paginate = 20
|
|||
|
summaryLength = 80
|
|||
|
|
|||
|
buildDrafts = false
|
|||
|
buildFuture = false
|
|||
|
|
|||
|
# googleAnalytics = "G-XXXXXXXXX"
|
|||
|
|
|||
|
[imaging]
|
|||
|
anchor = 'Center'
|
|||
|
|
|||
|
[taxonomies]
|
|||
|
author = "authors"
|
|||
|
series = "series"
|
|||
|
|
|||
|
[sitemap]
|
|||
|
changefreq = 'daily'
|
|||
|
filename = 'sitemap.xml'
|
|||
|
priority = 0.5
|
|||
|
|
|||
|
[outputs]
|
|||
|
home = ["HTML", "RSS", "JSON"]
|
|||
|
|
|||
|
[permalinks]
|
|||
|
posts = '/:year/:month/:filename/'
|