Update config to new theme
This commit is contained in:
parent
7c958e50df
commit
fa7e7df689
103
config.toml
103
config.toml
|
@ -1,67 +1,64 @@
|
||||||
baseURL = "https://cedaei.com/"
|
baseURL = "https://cedaei.com/"
|
||||||
languageCode = "en-us"
|
languageCode = "en-us"
|
||||||
title = "Ceda EI's Blog"
|
title = "Ceda EI's Blog"
|
||||||
theme = "paperesque"
|
theme = "codex"
|
||||||
paginate = 5
|
copyright = "CC-BY-SA 4.0"
|
||||||
pygmentsUseClasses = true
|
pygmentsUseClasses = true
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
# dir name of your blog content (default is `content/posts`)
|
# dir name of your blog content (default is `content/posts`)
|
||||||
contentTypeName = "posts"
|
contentTypeName = "posts"
|
||||||
|
dateFormat = "2006 Jan 2"
|
||||||
|
description = "asd"
|
||||||
|
|
||||||
# ["orange", "blue", "red", "green", "pink"]
|
twitter = "https://twitter.com/ceda_ei"
|
||||||
themeColor = "orange"
|
gitlab = "https://gitlab.com/ceda_ei/"
|
||||||
|
email = "mailto:ceda_ei@webionite.com"
|
||||||
|
iconOrder = ["Gitlab", "Email", "Twitter"]
|
||||||
|
showPageTitleInTOC = false
|
||||||
|
|
||||||
# if you set this to 0, only submenu trigger will be visible
|
# Controls the navigation
|
||||||
showMenuItems = 2
|
[[menu.main]]
|
||||||
|
identifier = "blog"
|
||||||
|
name = "Posts"
|
||||||
|
title = "Posts"
|
||||||
|
url = "/posts/"
|
||||||
|
|
||||||
# show selector to switch language
|
[[menu.main]]
|
||||||
showLanguageSelector = false
|
identifier = "source"
|
||||||
|
title = "Source"
|
||||||
# set theme to full screen width
|
|
||||||
fullWidthTheme = false
|
|
||||||
|
|
||||||
# center theme with default width
|
|
||||||
centerTheme = true
|
|
||||||
|
|
||||||
# set a custom favicon (default is a `themeColor` square)
|
|
||||||
# favicon = "favicon.ico"
|
|
||||||
|
|
||||||
# set all headings to their default size (depending on browser settings)
|
|
||||||
# it's set to `true` by default
|
|
||||||
# oneHeadingSize = false
|
|
||||||
|
|
||||||
[params.twitter]
|
|
||||||
# set Twitter handles for Twitter cards
|
|
||||||
# see https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started#card-and-content-attribution
|
|
||||||
# do not include @
|
|
||||||
creator = ""
|
|
||||||
site = ""
|
|
||||||
|
|
||||||
[[params.menu]]
|
|
||||||
name = "Blog Posts"
|
|
||||||
url = "posts/"
|
|
||||||
|
|
||||||
[[params.menu]]
|
|
||||||
name = "Tags"
|
|
||||||
url = "tags/"
|
|
||||||
|
|
||||||
[[params.menu]]
|
|
||||||
name = "About"
|
|
||||||
url = "https://webionite.com/"
|
|
||||||
|
|
||||||
[[params.menu]]
|
|
||||||
name = "RSS"
|
|
||||||
url = "/index.xml"
|
|
||||||
|
|
||||||
[[params.menu]]
|
|
||||||
name = "Telegram Updates"
|
|
||||||
url = "https://t.me/cedaei"
|
|
||||||
|
|
||||||
[[params.menu]]
|
|
||||||
name = "Source"
|
name = "Source"
|
||||||
url = "https://git.webionite.com/ceda_ei/cedaei.com"
|
url = "https://git.webionite.com/ceda_ei/cedaei.com"
|
||||||
|
|
||||||
[[params.topmenu]]
|
[[menu.main]]
|
||||||
name = "Subscribe"
|
identifier = "tg"
|
||||||
url = "/"
|
title = "Subscribe (TG)"
|
||||||
|
name = "Subscribe (TG)"
|
||||||
|
url = "https://t.me/cedaei"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "rss"
|
||||||
|
title = "Subscribe (RSS)"
|
||||||
|
name = "Subscribe (RSS)"
|
||||||
|
url = "/index.xml"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "tags"
|
||||||
|
title = "Tags"
|
||||||
|
name = "Tags"
|
||||||
|
url = "/tags/"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "about"
|
||||||
|
name = "About"
|
||||||
|
title = "About"
|
||||||
|
url = "https://webionite.com/"
|
||||||
|
|
||||||
|
|
||||||
|
[markup]
|
||||||
|
[markup.highlight]
|
||||||
|
codeFences = false
|
||||||
|
|
||||||
|
# Set to false to disallow raw HTML in markdown files
|
||||||
|
[markup.goldmark.renderer]
|
||||||
|
unsafe = true
|
||||||
|
|
Loading…
Reference in New Issue