mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
80 lines
1.9 KiB
TOML
80 lines
1.9 KiB
TOML
# -------------------------------------------------------------------------------------
|
|
# Hugo Configuration
|
|
# See: https://gohugo.io/configuration/all/
|
|
# -------------------------------------------------------------------------------------
|
|
|
|
title = "FixIt TEST"
|
|
baseURL = "https://demo.fixit.lruihao.cn/test/"
|
|
ignoreLogs = [ "warning-file-tree" ]
|
|
defaultContentLanguage = "en"
|
|
|
|
# test for multilingual support
|
|
# [languages]
|
|
|
|
# [languages.en]
|
|
# languageCode = "en"
|
|
# languageName = "English"
|
|
|
|
# [languages.zh-cn]
|
|
# languageCode = "zh-CN"
|
|
# languageName = "简体中文"
|
|
|
|
[permalinks]
|
|
|
|
[permalinks.page]
|
|
posts = "/units/:slugorcontentbasename"
|
|
|
|
[permalinks.section]
|
|
posts = "/units/"
|
|
|
|
[markup]
|
|
_merge = "shallow"
|
|
|
|
[outputs]
|
|
_merge = "shallow"
|
|
|
|
# -------------------------------------------------------------------------------------
|
|
# Taxonomies Configuration
|
|
# See: https://gohugo.io/content-management/taxonomies/#configure-taxonomies
|
|
# -------------------------------------------------------------------------------------
|
|
|
|
[taxonomies]
|
|
_merge = "shallow"
|
|
|
|
# -------------------------------------------------------------------------------------
|
|
# Theme Core Configuration
|
|
# See: https://fixit.lruihao.cn/documentation/basics/#theme-configuration
|
|
# -------------------------------------------------------------------------------------
|
|
|
|
[params]
|
|
version = "1.0.X"
|
|
|
|
[params.home.profile]
|
|
enable = true
|
|
avatarURL = "/images/fixit-test.png"
|
|
|
|
[params.social]
|
|
|
|
[params.social.github]
|
|
id = "hugo-fixit"
|
|
weight = 2
|
|
|
|
[params.social.twitter]
|
|
id = "lruihao"
|
|
weight = 1
|
|
# for twitter cards
|
|
# site = "hugo-fixit"
|
|
|
|
[params.page]
|
|
collectionList = true
|
|
collectionNavigation = true
|
|
|
|
[params.author]
|
|
name = "Lruihao"
|
|
email = ""
|
|
link = "https://lruihao.cn"
|
|
avatar = "https://lruihao.cn/images/avatar.jpg"
|
|
|
|
[params.mermaid]
|
|
zenuml = "https://cdn.jsdelivr.net/npm/@mermaid-js/mermaid-zenuml/dist/mermaid-zenuml.esm.min.mjs"
|