Skip to content

Commit

Permalink
fix: enable comments in global config
Browse files Browse the repository at this point in the history
**Problem**

Comments on blog posts seems to have stopped working, probably related to zola 19 update.

**Solution**

Enable comments globally instead.

See-also not-matthias/apollo#74
  • Loading branch information
christianfosli committed Oct 19, 2024
1 parent 9cc7097 commit b176f9c
Show file tree
Hide file tree
Showing 12 changed files with 1 addition and 32 deletions.
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ highlight_theme = "ayu-dark"
[extra]
use_cdn = false
theme = "toggle"
comment = false
comment = true

menu = [
{ name = "/posts", url = "/posts", weight = 1 },
Expand Down
3 changes: 0 additions & 3 deletions content/posts/2022-otel-elastic/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
title = "Visualisere telemetridata fra .NET mikrotjenester med OpenTelemetry, ElasticSearch, Kibana"
date = "2022-10-24"

[extra]
comment = true

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

[extra]
comment = true

[taxonomies]
tags=["python"]
+++
Expand Down
3 changes: 0 additions & 3 deletions content/posts/2024-on-colorscheme-changed/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
title = "\"On-colorscheme-changed\" with rust and zbus"
date = "2024-01-23"

[extra]
comment = true

[taxonomies]
tags=["rust", "linux"]
+++
Expand Down
3 changes: 0 additions & 3 deletions content/posts/2024-systemd-resolved-private-ep/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
title = "Specific DNS servers for specific domain names with systemd-resolved"
date = "2024-04-04"

[extra]
comment = true

[taxonomies]
tags=["linux"]
+++
Expand Down
3 changes: 0 additions & 3 deletions content/projects/bike-count.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
title = "Bike-count"
description = "Visualizing data from bike-counter's in Stavanger"
weight = 7

[extra]
comment = true
+++

I played a bit with Python pandas and streamlit to learn more about a tech stack I might be working in for an upcoming (as of Feb 2024) project.
Expand Down
3 changes: 0 additions & 3 deletions content/projects/msteams-notify.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
title = "MS Teams notify"
description = "Rust-based console app to work-around easy-to-miss notifications from MS Teams PWA on Linux"
weight = 4

[extra]
comment = true
+++

### Problem
Expand Down
3 changes: 0 additions & 3 deletions content/projects/new-uuid.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
title = "new-uuid.com"
description = "Simple web api to generate uuid's"
weight = 3

[extra]
comment = true
+++

Simple web api to generate random uuid's,
Expand Down
3 changes: 0 additions & 3 deletions content/projects/notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
title = "Notes"
description = "Visualizing my personal (and non-confidential) notes using rust mdbook"
weight = 6

[extra]
comment = true
+++

I'm keeping some of my personal (but non-confidential, of course 😃) notes here.
Expand Down
3 changes: 0 additions & 3 deletions content/projects/on-colorscheme-changed.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
title = "On colorscheme changed"
description = "Rust-based service to change color theme in the terminal when the system color scheme changes"
weight = 5

[extra]
comment = true
+++

Rust-based service to change color theme in my terminal emulator and editor whenever the system color scheme changes.
Expand Down
1 change: 0 additions & 1 deletion content/projects/snake.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ weight = 1

[extra]
local_image = "/projects/snake.png"
comment = true
+++

The classic snake game, similar to the one found on Nokia phones in the 90's.
Expand Down
3 changes: 0 additions & 3 deletions content/projects/stellerom.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
title = "Stellerom"
description = "Work-in-Progress web app for finding and rating changing rooms near you"
weight = 2

[extra]
comment = true
+++

Work-in-Progress web app for finding and rating changing rooms near you.
Expand Down

0 comments on commit b176f9c

Please sign in to comment.