36 lines
557 B
TOML
36 lines
557 B
TOML
|
|
baseURL = "https://blog.example.com/"
|
||
|
|
languageCode = "en-us"
|
||
|
|
title = "D3V Blog"
|
||
|
|
theme = "LoveIt"
|
||
|
|
defaultContentLanguage = "en"
|
||
|
|
enableRobotsTXT = true
|
||
|
|
|
||
|
|
[permalinks]
|
||
|
|
posts = "/posts/:slug/"
|
||
|
|
|
||
|
|
[params]
|
||
|
|
defaultTheme = "auto"
|
||
|
|
dateFormat = "2006-01-02"
|
||
|
|
description = "Notes, updates, and guides."
|
||
|
|
|
||
|
|
[params.author]
|
||
|
|
name = "D3V Team"
|
||
|
|
|
||
|
|
[markup]
|
||
|
|
[markup.goldmark]
|
||
|
|
[markup.goldmark.renderer]
|
||
|
|
unsafe = true
|
||
|
|
|
||
|
|
[menu]
|
||
|
|
[[menu.main]]
|
||
|
|
identifier = "posts"
|
||
|
|
name = "Posts"
|
||
|
|
url = "/posts/"
|
||
|
|
weight = 1
|
||
|
|
|
||
|
|
[[menu.main]]
|
||
|
|
identifier = "about"
|
||
|
|
name = "About"
|
||
|
|
url = "/about/"
|
||
|
|
weight = 2
|