Skip to content

Commit

Permalink
DeepThought theme
Browse files Browse the repository at this point in the history
- dark mode flickers RatanShreshtha/DeepThought#46
- paginators gone wild RatanShreshtha/DeepThought#60
- landing page shows no posts
  • Loading branch information
tshepang committed Jul 24, 2022
1 parent 4815f03 commit e5f4836
Showing 1 changed file with 36 additions and 10 deletions.
46 changes: 36 additions & 10 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,45 @@
title = "Tshepang logs"
base_url = "https://tshepang.github.io"
theme = "after-dark"
theme = "DeepThought"
generate_feed = true
build_search_index = true
taxonomies = [
{ name = "tags", rss = true },
{ name = "categories", rss = true },
]

[[taxonomies]]
name = "tags"
rss = true

[[taxonomies]]
name = "categories"
rss = true
paginate_by = 10

[markdown]
highlight_code = true

[extra]
after_dark_menu = [
{url = "$BASE_URL/about-me", name = "about"},
{url = "$BASE_URL/tags", name = "tags"},
{url = "$BASE_URL/categories/movies", name = "movies"},
]
author.name = "Tshepang Mbambo"
mermaid.enabled = true

[extra.social]
email = "tshepang@gmail.com"
twitter = "tshepang_dev"
github = "tshepang"

[[extra.navbar_items]]
code = "en"

[[extra.navbar_items.nav_items]]
url = "$BASE_URL"
name = "home"

[[extra.navbar_items.nav_items]]
url = "$BASE_URL/tags"
name = "tags"

[[extra.navbar_items.nav_items]]
url = "$BASE_URL/categories/movies"
name = "movies"

[[extra.navbar_items.nav_items]]
url = "$BASE_URL/about-me"
name = "about"

0 comments on commit e5f4836

Please sign in to comment.