Skip to content

Commit

Permalink
feat: add tags using zola taxonomies
Browse files Browse the repository at this point in the history
  • Loading branch information
christianfosli committed Mar 30, 2024
1 parent 75bce96 commit 936b41f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title = "Christian Fosli"
build_search_index = true
generate_feed = true
compile_sass = true
taxonomies = [{ name = "tags" }]

theme = "apollo"

Expand All @@ -20,6 +21,7 @@ menu = [
{ name = "/posts", url = "/posts", weight = 1 },
{ name = "/projects", url = "/projects", weight = 2 },
{ name = "/about", url = "/about", weight = 3 },
{ name = "/tags", url = "/tags", weight = 4 },
]

socials = [
Expand Down
3 changes: 3 additions & 0 deletions content/posts/data-webapps-with-streamlit/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
title = "Quick and easy data web apps in Python with Streamlit"
date = "2024-04-01"
draft = true

[taxonomies]
tags=["python"]
+++

I recently switched jobs (from one IT consultancy to another, smaller one).
Expand Down
3 changes: 3 additions & 0 deletions content/posts/on-colorscheme-changed/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
+++
title = "\"On-colorscheme-changed\" with rust and zbus"
date = "2024-01-23"

[taxonomies]
tags=["rust", "linux"]
+++

My favorite terminal emulator at the moment is [Alacritty](https://alacritty.org).
Expand Down
3 changes: 3 additions & 0 deletions content/posts/otel-elastic/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
+++
title = "Visualisere telemetridata fra .NET mikrotjenester med OpenTelemetry, ElasticSearch, Kibana"
date = "2022-10-24"

[taxonomies]
tags=["dotnet", "elastic"]
+++

<div class="fig-container">
Expand Down

0 comments on commit 936b41f

Please sign in to comment.