config.toml (1433B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
baseurl = "https://example.com/"
languageCode = "en-us"
theme = "hugo-theme-terminal"
pagination.pagerSize = 2
[sitemap]
changeFreq = 'Monthly'
disable = false
filename = 'sitemap.xml'
priority = -1
[params]
contentTypeName = "posts"
themeColor = "pink"
showMenuItems = 2
fullWidthTheme = false
centerTheme = true
[markup.highlight]
codeFences = true
guessSyntax = true
hl_Lines = ""
lineNoStart = 1
lineNos = true
lineNumbersInTable = false
tabWidth = 4
noClasses = false
[languages]
[languages.en]
title = "Terminal"
copyright = "All content by [lou.] licensed as <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\" target=\"_blank\" style=\"text-decoration:none\">CC-BY-SA 4.0</a> unless otherwise specified."
[languages.en.params]
subtitle = "A simple, retro theme for Hugo"
keywords = ""
menuMore = "Show more"
readMore = "Read more"
readOtherPosts = "Read other posts"
[languages.en.params.logo]
logoText = "Terminal"
logoHomeLink = "/"
[languages.en.menu]
[[languages.en.menu.main]]
identifier = "blog"
name = "blog"
url = "/posts"
[[languages.en.menu.main]]
identifier = "about"
name = "About"
url = "/about"
[[languages.en.menu.main]]
identifier = "showcase"
name = "Showcase"
url = "/showcase"
[markup.goldmark.renderer]
unsafe = true
|