Update the config

This commit is contained in:
foo-dogsquared 2019-08-20 22:47:50 +08:00
parent eed51db43e
commit 0241b733b7

View File

@ -7,7 +7,7 @@ disqusShortname = "foodogsquared"
[params] [params]
# dir name of your blog content (default is `content/posts`) # dir name of your blog content (default is `content/posts`)
contentTypeName = "posts" contentTypeNames = [ "posts", "projects" ]
# ["orange", "blue", "red", "green", "pink"] # ["orange", "blue", "red", "green", "pink"]
themeColor = "orange" themeColor = "orange"
# if you set this to 0, only submenu trigger will be visible # if you set this to 0, only submenu trigger will be visible
@ -19,6 +19,27 @@ disqusShortname = "foodogsquared"
# set a custom favicon (default is a `themeColor` square) # set a custom favicon (default is a `themeColor` square)
favicon = "logo.jpg" favicon = "logo.jpg"
[params.blog]
[params.blog.author]
name = "Gabriel Arazas"
alias = "foo-dogsquared"
[params.blog.contact]
[params.blog.contact.github]
name = "GitHub"
link = "https://github.com/foo-dogsquared"
[params.blog.contact.gitlab]
name = "GitLab"
link = "https://github.com/foo-dogsquared"
[params.blog.contact.twitter]
name = "Twitter"
link = "https://twitter.com/foo_dogsquared"
[params.blog.contact.keybase]
name = "Keybase"
link = "https://keybase.io/foo_dogsquared"
[languages] [languages]
[languages.en] [languages.en]
title = "A Hack's Code" title = "A Hack's Code"
@ -35,11 +56,21 @@ disqusShortname = "foodogsquared"
[languages.en.menu] [languages.en.menu]
[[languages.en.menu.main]] [[languages.en.menu.main]]
identifier = "site" identifier = "home"
name = "Site" name = "Home"
url = "https://foo-dogsquared.github.io" url = "https://foo-dogsquared.github.io"
[[languages.en.menu.main]] [[languages.en.menu.main]]
identifier = "about" identifier = "about"
name = "About" name = "About"
url = "/about" url = "/about"
[[languages.en.menu.main]]
identifier = "posts"
name = "Posts"
url = "/posts"
[[languages.en.menu.main]]
identifier = "projects"
name = "Projects"
url = "/projects"