mirror of https://github.com/jpanther/congo.git
71 lines
1.7 KiB
TOML
Executable File
71 lines
1.7 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/
|
|
# --------------------------------------------------------------------------
|
|
|
|
theme = "congo"
|
|
languageCode = "en-AU"
|
|
defaultContentLanguage = "en"
|
|
title = "Congo"
|
|
summaryLength = 0
|
|
|
|
[author]
|
|
name = "Congo"
|
|
image = "img/author.jpg"
|
|
bio = "This is an example author bio, and although there's a stock photo of a dog here, this article was actually created by a human. :dog:"
|
|
links = [
|
|
{ twitter = "https://twitter.com/" },
|
|
{ facebook = "https://facebook.com/" },
|
|
{ linkedin = "https://linkedin.com/" },
|
|
{ youtube = "https://youtube.com/" },
|
|
]
|
|
|
|
[taxonomies]
|
|
tag = "tags"
|
|
|
|
[params]
|
|
# logo = "logo.jpg"
|
|
|
|
[params.homepage]
|
|
layout = "custom"
|
|
showRecent = true
|
|
mainSections = ["samples"]
|
|
|
|
[params.list]
|
|
groupByYear = false
|
|
showBreadcrumbs = true
|
|
|
|
[params.article]
|
|
showBreadcrumbs = true
|
|
showEdit = true
|
|
editURL = "https://github.com/jpanther/congo/tree/dev/exampleSite/content/"
|
|
editAppendPath = 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
|