51 lines
868 B
TOML
51 lines
868 B
TOML
baseURL = 'http://localhost'
|
|
languageCode = 'en-us'
|
|
title = "Carl's Playground"
|
|
theme = 'PaperMod'
|
|
enableEmoji = true
|
|
|
|
[params]
|
|
env = "production"
|
|
|
|
[params.homeInfoParams]
|
|
Title = "Welcome in :wave:"
|
|
Content = "Enjoy my ramblings!"
|
|
|
|
[[params.socialIcons]]
|
|
name = "gitea"
|
|
url = "https://gitea.iwanaga.moe"
|
|
|
|
[[params.socialIcons]]
|
|
name = "linkedin"
|
|
url = "https://www.linkedin.com/in/carltibule/"
|
|
|
|
[[menu.main]]
|
|
identifier = "search"
|
|
name = "Search"
|
|
url = "/search/"
|
|
weight = 10
|
|
|
|
[[menu.main]]
|
|
identifier = "categories"
|
|
name = "Categories"
|
|
url = "/categories/"
|
|
weight = 20
|
|
|
|
[[menu.main]]
|
|
identifier = "tags"
|
|
name = "Tags"
|
|
url = "/tags/"
|
|
weight = 30
|
|
|
|
[[menu.main]]
|
|
identifier = "archive"
|
|
name = "Archive"
|
|
url = "/archive/"
|
|
weight = 40
|
|
|
|
[outputs]
|
|
home = [ "HTML", "RSS", "JSON" ]
|
|
|
|
[taxonomies]
|
|
tag = "tags"
|
|
category = "categories" |