mirror of https://github.com/jpanther/congo.git
41 lines
1008 B
TOML
Executable File
41 lines
1008 B
TOML
Executable File
# Site configuration for the Congo demo site
|
|
# --------------------------------------------------------------------------
|
|
# NOTE: You should not use this file as a template for your 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"
|
|
twitter = "https://twitter.com/"
|
|
github = "https://github.com/"
|
|
linkedin = "https://linkedin.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
|
|
|
|
[taxonomies]
|
|
category = "categories"
|
|
tag = "tags"
|
|
|
|
[markup.highlight]
|
|
noClasses = false
|