26 lines
602 B
TOML
26 lines
602 B
TOML
# The URL the site will be built for
|
|
base_url = "https://project-cloud.net"
|
|
|
|
# Whether to automatically compile all Sass files in the sass directory
|
|
compile_sass = true
|
|
|
|
# Whether to build a search index to be used later on by a JavaScript library
|
|
build_search_index = false
|
|
|
|
theme = "DeepThought"
|
|
|
|
minify_html = true
|
|
|
|
[markdown]
|
|
highlight_code = true
|
|
|
|
[extra]
|
|
list_pages = true
|
|
header_nav = [
|
|
{ url = "/", name_en = "/home/"},
|
|
{ url = "/blog", name_en = "/blog/"},
|
|
{ url = "https://git.project-cloud.net", name_en = "/git/"},
|
|
{ url = "https://cloud.project-cloud.net", name_en = "/cloud/"}
|
|
]
|
|
|