From b24f6327bfe71d5bd4e592f2f5c3d7317c568c63 Mon Sep 17 00:00:00 2001 From: Takuya Tokuda Date: Thu, 7 Jun 2018 05:12:25 +0900 Subject: [PATCH] Fix a bug that the personal-data description is not displayed in docs/home/. (#8712) --- layouts/docs/docsportal_home.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/layouts/docs/docsportal_home.html b/layouts/docs/docsportal_home.html index ae0de8edcc..730a93f19d 100644 --- a/layouts/docs/docsportal_home.html +++ b/layouts/docs/docsportal_home.html @@ -26,6 +26,10 @@ {{ $persona_info := $vv }} {{ if $persona_info.short_desc }} {{ $persona_info.short_desc }} + {{ else if $persona_info.glossary_id }} + {{ with $persona_info.glossary_id | printf "%s.md" | ($.Site.GetPage "page" "docs/reference/glossary").Resources.GetMatch }} + {{ .Params.short_description }} + {{ end }} {{ end }} {{ end }}