From 88a70ed24b5be3428f779a4ada8fb3a9911c7c70 Mon Sep 17 00:00:00 2001 From: Alex Le Date: Fri, 21 Nov 2025 14:39:24 -0800 Subject: [PATCH 1/2] Fixed: shadowed-variable in client-list.html template. Signed-off-by: Alex Le --- templates/client-list.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/client-list.html b/templates/client-list.html index 8487ab5d..6a3eef47 100644 --- a/templates/client-list.html +++ b/templates/client-list.html @@ -3,8 +3,8 @@ {% block main_content %} {% set client_path = section.extra.recommended_clients_paths | first %} - {% set client = load_data(path = docs::client_json_path(client_path=client_path), format="json", required = false) %} - {% if not client %} + {% set first_client = load_data(path = docs::client_json_path(client_path=client_path), format="json", required = false) %} + {% if not first_client %} Clients page not found. You likely need to build the client page. See "Building additional content" in the README.md file. {% else %}
From ff1ec31f74a275f4e0be7704fb09176965e90d08 Mon Sep 17 00:00:00 2001 From: Alex Le Date: Fri, 21 Nov 2025 14:40:17 -0800 Subject: [PATCH 2/2] Added support to display website links for clients. Signed-off-by: Alex Le --- templates/client-list.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/client-list.html b/templates/client-list.html index 6a3eef47..70a126cd 100644 --- a/templates/client-list.html +++ b/templates/client-list.html @@ -37,6 +37,9 @@

{{ docs::format_language(language=language) }}

{{ client.name }}