49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
baseURL = 'https://blog.janishutz.com/'
|
|
languageCode = 'en-us'
|
|
title = 'blog.janishutz.com'
|
|
theme = 'DoIt'
|
|
# post pagination
|
|
paginate = "25"
|
|
# post excerpt
|
|
summaryLength = "10"
|
|
|
|
[params]
|
|
# DoIt theme version
|
|
version = "0.2.X"
|
|
|
|
[menu]
|
|
[[menu.main]]
|
|
identifier = "posts"
|
|
# you can add extra information before the name (HTML format is supported), such as icons
|
|
pre = ""
|
|
# you can add extra information after the name (HTML format is supported), such as icons
|
|
post = ""
|
|
name = "Posts"
|
|
url = "/posts/"
|
|
# title will be shown when you hover on this menu link
|
|
title = ""
|
|
weight = 1
|
|
[[menu.main]]
|
|
identifier = "tags"
|
|
pre = ""
|
|
post = ""
|
|
name = "Tags"
|
|
url = "/tags/"
|
|
title = ""
|
|
weight = 2
|
|
[[menu.main]]
|
|
identifier = "categories"
|
|
pre = ""
|
|
post = ""
|
|
name = "Categories"
|
|
url = "/categories/"
|
|
title = ""
|
|
weight = 3
|
|
|
|
# Markup related configuration in Hugo
|
|
[markup]
|
|
# Syntax Highlighting (https://gohugo.io/content-management/syntax-highlighting)
|
|
[markup.highlight]
|
|
# false is a necessary configuration (https://github.com/dillonzq/LoveIt/issues/158)
|
|
noClasses = false
|