From ed30b612933f5fdb286e7e2818cbc9fa4bb9579f Mon Sep 17 00:00:00 2001 From: jmservera Date: Sat, 1 Aug 2026 19:46:53 +0200 Subject: [PATCH] feat(data): link the embeddable-charts demo from the data landing page The /charts/embeddable-rankings/ demo (how to embed Claracle charts on another site) had no menu entry and no internal link, so it was effectively unreachable. Add a discoverable link at the bottom of the /data/ landing page, guarded with site.GetPage so it never renders a broken link if the page is absent. --- layouts/data/list.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/layouts/data/list.html b/layouts/data/list.html index 1fc69c3c..b1a1da33 100644 --- a/layouts/data/list.html +++ b/layouts/data/list.html @@ -25,4 +25,11 @@

{{ .Title }}

{{- end }} + +{{- with site.GetPage "/charts/embeddable-rankings" }} +

+ Want these rankings on your own site? + See how to embed Claracle charts. +

+{{- end }} {{- end -}}