fix: Passed description down the context chain.

This commit is contained in:
Spencer Brower
2026-07-21 09:27:04 -04:00
parent 566d6f0768
commit 4ea44e8a09
+2
View File
@@ -25,6 +25,7 @@ Base_Data :: struct {
params: json.Value, params: json.Value,
body: string, body: string,
title: string, title: string,
description: string,
og: Open_Graph, og: Open_Graph,
} }
@@ -150,6 +151,7 @@ render_site :: proc(site: ^Site) {
now = now, now = now,
author = site.author, author = site.author,
params = site.params, params = site.params,
description = site.description,
og = site.og, og = site.og,
} }