diff --git a/config.toml b/config.toml index 68c38ce..3bdad0d 100644 --- a/config.toml +++ b/config.toml @@ -1,5 +1,5 @@ base_url = "https://sstork.dev" -theme = "linkita" +theme = "kita" title = "sstork.dev" author = "Sebastian Stork" @@ -10,26 +10,32 @@ taxonomies = [ [markdown] highlight_code = true -highlight_theme = "material-dark" -render_emoji = true -bottom_footnotes = true -[extra] -header_menu_name = "menu_name" +[[extra.menu]] +name = "Tags" +url = "$BASE_URL/tags/" -[extra.menus] -menu_name = [ - { url = "$BASE_URL/tags/", name = "Tags" }, - { url = "$BASE_URL/about/", name = "About" }, -] +[[extra.menu]] +name = "About" +url = "$BASE_URL/about/" -[extra.profiles."Sebastian Stork"] +[extra.profile] avatar_url = "images/stork-avatar.jpg" name = "Sebastian Stork" bio = "CS Student & Nix enthusiast" -social = [ - { name = "github", url = "https://github.com/SebastianStork" }, - { name = "forgejo", url = "https://git.sstork.dev/SebastianStork" }, - { name = "linkedin", url = "https://www.linkedin.com/in/sebastian-stork" }, - { name = "rss", url = "$BASE_URL/atom.xml" }, -] + +[[extra.profile.social]] +name = "github" +url = "https://github.com/SebastianStork" + +[[extra.profile.social]] +name = "forgejo" +url = "https://git.sstork.dev/SebastianStork" + +[[extra.profile.social]] +name = "linkedin" +url = "https://www.linkedin.com/in/sebastian-stork" + +[[extra.profile.social]] +name = "rss" +url = "$BASE_URL/atom.xml" diff --git a/flake.lock b/flake.lock index ba5e2b8..daf158f 100644 --- a/flake.lock +++ b/flake.lock @@ -3,16 +3,16 @@ "linkita": { "flake": false, "locked": { - "lastModified": 1761138491, - "narHash": "sha256-u+oSvkk8ylbT4xdBCLYl4HuV0jN59IH28YQGt8FMBtU=", + "lastModified": 1761155460, + "narHash": "sha256-A+UPcSINYsCG95b6RLu1cvcP9SpxI8CV4Id1IB3WocA=", "owner": "SebastianStork", - "repo": "linkita", - "rev": "6a3159e6477eb07646dda32ddc5be974298d5a48", + "repo": "kita", + "rev": "ded1aaeeb93600bf9175b9d3578624b59fec7120", "type": "github" }, "original": { "owner": "SebastianStork", - "repo": "linkita", + "repo": "kita", "type": "github" } }, diff --git a/flake.nix b/flake.nix index de98fe5..81f0e32 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,7 @@ }; linkita = { - url = "github:SebastianStork/linkita"; + url = "github:SebastianStork/kita"; flake = false; }; }; @@ -30,7 +30,7 @@ shellHook = '' mkdir -p themes - ln -snf "${linkita}" themes/linkita + ln -snf "${linkita}" themes/kita ''; };