mirror of https://github.com/jpanther/congo.git
66 lines
1.4 KiB
TOML
Executable File
66 lines
1.4 KiB
TOML
Executable File
# Site configuration for the Congo demo site
|
|
# --------------------------------------------------------------------------
|
|
# IMPORTANT: You should not use this file as a template for configuration
|
|
# as it does not contain all the required theme settings!
|
|
#
|
|
# Refer to the theme docs for configuration instructions if you're unsure.
|
|
# https://jpanther.github.io/Congo/docs/
|
|
# --------------------------------------------------------------------------
|
|
|
|
baseURL = "https://jpanther.github.io/Congo/"
|
|
theme = "Congo"
|
|
languageCode = "en-AU"
|
|
defaultContentLanguage = "en"
|
|
title = "Congo"
|
|
enableEmoji = true
|
|
relativeURLs = true
|
|
|
|
[author]
|
|
name = "Congo"
|
|
image = "img/author.jpg"
|
|
links = [
|
|
{ twitter = "https://twitter.com/" },
|
|
{ facebook = "https://facebook.com/" },
|
|
{ linkedin = "https://linkedin.com/" },
|
|
{ youtube = "https://youtube.com/" },
|
|
]
|
|
|
|
[taxonomies]
|
|
tag = "tags"
|
|
|
|
[params.homepage]
|
|
layout = "custom"
|
|
showList = true
|
|
listSections = "samples"
|
|
|
|
[params.list]
|
|
groupByYear = false
|
|
showBreadcrumbs = true
|
|
|
|
[params.article]
|
|
showBreadcrumbs = true
|
|
|
|
[[menu.main]]
|
|
name = "Docs"
|
|
pageRef = "docs"
|
|
weight = 10
|
|
[[menu.main]]
|
|
name = "Samples"
|
|
pageRef = "samples"
|
|
weight = 20
|
|
# [[menu.main]]
|
|
# name = "Users"
|
|
# pageRef = "users"
|
|
# weight = 30
|
|
[[menu.main]]
|
|
name = "GitHub"
|
|
url = "https://github.com/jpanther/Congo"
|
|
weight = 40
|
|
|
|
[markup.goldmark]
|
|
[markup.goldmark.renderer]
|
|
unsafe = true
|
|
|
|
[markup.highlight]
|
|
noClasses = false
|