pi-www-theme-soho/exampleSite/config.toml

89 lines
1.6 KiB
TOML
Raw Normal View History

2020-02-11 23:53:02 +02:00
baseurl = "https://example.com/"
2020-02-10 20:39:06 +02:00
languageCode = "en"
2020-02-11 23:53:02 +02:00
title = "Soho Theme"
2020-02-10 20:39:06 +02:00
DefaultContentLanguage = "en"
enableInlineShortcodes = true
summarylength = 10
enableEmoji = true
2020-05-25 23:56:14 +03:00
paginate = 5
2020-02-10 20:39:06 +02:00
[params]
2020-05-25 23:56:14 +03:00
title = "Soho Theme"
description = "Example Blog"
2020-02-11 00:59:13 +02:00
# gravatar = "soho@example.com"
2020-05-25 23:56:14 +03:00
images = ["images/profile.png"]
2020-02-10 20:39:06 +02:00
profilePicture = "images/profile.png"
copyright = "Author Name"
license = "CC BY-SA 4.0"
licenseURL = "https://creativecommons.org/licenses/by-sa/4.0"
2020-02-18 23:10:16 +02:00
builtWith = true
2020-05-25 23:56:14 +03:00
mainSections = ["post"]
2020-02-10 20:39:06 +02:00
2020-05-26 00:04:57 +03:00
## Set custom theme color.
# themeColor = "#fc2803"
2020-02-10 20:39:06 +02:00
[[params.socialIcons]]
icon = "fa-linkedin"
title = "Linkedin"
url = "#"
[[params.socialIcons]]
icon = "fa-github"
title = "GitHub"
2020-05-25 23:56:14 +03:00
url = "https://github.com/alexandrevicenzi/soho"
2020-02-10 20:39:06 +02:00
[[params.socialIcons]]
icon = "fa-twitter"
title = "Twitter"
url = "#"
2020-05-25 23:56:14 +03:00
[taxonomies]
series = "series"
category = "categories"
tag = "tags"
2020-02-10 20:39:06 +02:00
[menu]
[[menu.main]]
name = "Posts"
weight = 100
identifier = "posts"
url = "/posts/"
2020-05-25 23:56:14 +03:00
[[menu.main]]
name = "Categories"
weight = 200
identifier = "categories"
url = "/categories/"
[[menu.main]]
name = "Tags"
weight = 200
identifier = "tags"
url = "/tags/"
2020-02-10 20:39:06 +02:00
[[menu.main]]
name = "About"
identifier = "about"
2020-05-25 23:56:14 +03:00
weight = 10
2020-02-10 20:39:06 +02:00
url = "/about/"
2020-05-25 23:56:14 +03:00
[[menu.main]]
name = "Contact"
identifier = "contact"
weight = 20
url = "/contact/"
2020-02-10 20:39:06 +02:00
[markup]
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "monokai"
tabWidth = 4