From 1c4bf4011e953dfbcabb928a372e5e475d5f7887 Mon Sep 17 00:00:00 2001 From: jinningwang Date: Sun, 22 Jun 2025 17:07:08 -0400 Subject: [PATCH 1/7] Display tags in wiki term --- _layouts/wiki.liquid | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/_layouts/wiki.liquid b/_layouts/wiki.liquid index 58ccbc06..a6af4aa4 100644 --- a/_layouts/wiki.liquid +++ b/_layouts/wiki.liquid @@ -68,9 +68,22 @@ {% if page.last_update %} -

Last Updated: {{ page.last_update | date: '%B %d, %Y' }}

-
+

Last Updated:  {{ page.last_update | date: '%B %d, %Y' }}

{% endif %} + + {% if page.tags and page.tags != empty %} +
+
+

Tags:  

+ {% for tag in page.tags %} + {% assign tag_url = tag | slugify | prepend: '/wiki-tag/#' %} + # {{ tag }} + {%- if forloop.last == false %}  {% endif %} + {% endfor %} +
+
+ {% endif %} + {% if page.toc %}