mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-14 10:09:31 -07:00
* chore(hugo.toml): update theme configuration to use "bridget" theme feat(go.mod): add "github.com/Sped0n/bridget" module as a dependency with version v0.0.0-20231104151130-eb8ddf657d31 feat(go.sum): add checksum for "github.com/Sped0n/bridget" module with version v0.0.0-20231104151130-eb8ddf657d31 * blind commit
28 lines
873 B
TOML
28 lines
873 B
TOML
# timeout
|
|
timeout = "1200s"
|
|
# your website url
|
|
baseURL = 'https://www.example.com/'
|
|
# website title
|
|
title = 'Bridget'
|
|
# don't touch this
|
|
disableKinds = ["section", "taxonomy", "term", "home"]
|
|
# robots.txt
|
|
enableRobotsTXT = true
|
|
# available options
|
|
# * en (powered by Geist)
|
|
# * de (powered by Geist)
|
|
# * es (powered by Geist)
|
|
# * fr (powered by Geist)
|
|
# * it (powered by Geist)
|
|
# * zh-sg zh-cn (powered by Noto Sans SC)
|
|
# * zh-hk zh-tw zh-mo (powered by Noto Sans TC)
|
|
# * ja (powered by Noto Sans JP)
|
|
# * ko (powered by Noto Sans KR)
|
|
defaultContentLanguage = 'en'
|
|
|
|
# theme as module
|
|
[module]
|
|
replacements = "github.com/Sped0n/bridget -> ../.." # deploy with local dir WARN: delete this line if you want to deploy with git
|
|
[[module.imports]]
|
|
path = "github.com/Sped0n/bridget" # deploy with git (recommended) WARN: you should also set `bundled` to true in params.toml !!!
|