mirror of https://github.com/jpanther/congo.git
44 lines
1.1 KiB
TOML
Executable File
44 lines
1.1 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://github.com/jpanther/Congo#readme
|
|
# --------------------------------------------------------------------------
|
|
|
|
baseURL = "https://example.com"
|
|
theme = "Congo"
|
|
languageCode = "en-AU"
|
|
title = "Congo"
|
|
|
|
[author]
|
|
name = "Freddy Blogger"
|
|
image = "https://i.pravatar.cc/150?img=11"
|
|
links = [
|
|
{ twitter = "https://twitter.com/" },
|
|
{ facebook = "https://facebook.com/" },
|
|
{ linkedin = "https://linkedin.com/" },
|
|
{ youtube = "https://youtube.com/" },
|
|
]
|
|
|
|
[[menu.main]]
|
|
name = "Blog"
|
|
pageRef = "blog"
|
|
weight = 10
|
|
[[menu.main]]
|
|
name = "About"
|
|
pageRef = "about"
|
|
weight = 20
|
|
[[menu.main]]
|
|
name = "Tags"
|
|
url = "tags"
|
|
weight = 30
|
|
|
|
[markup.goldmark]
|
|
[markup.goldmark.renderer]
|
|
unsafe = true
|
|
|
|
[markup.highlight]
|
|
noClasses = false
|