From effd00aaeffb611a28658d7046c1d3af1d17ac16 Mon Sep 17 00:00:00 2001 From: IanWold Date: Sun, 13 Oct 2024 19:02:05 -0500 Subject: [PATCH] Update article template with tag icon --- Templates/article.liquid | 4 ++-- build.csx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Templates/article.liquid b/Templates/article.liquid index 017dd03..ad424d0 100644 --- a/Templates/article.liquid +++ b/Templates/article.liquid @@ -21,8 +21,8 @@ {% if topics %} - - + + {% for topic in topics %} {{ topic }} {% endfor %} diff --git a/build.csx b/build.csx index 6361c71..a1dc399 100644 --- a/build.csx +++ b/build.csx @@ -183,7 +183,7 @@ new MetalsharpProject() foreach (var topic in topicPosts) { - project.AddOutput(new MetalsharpFile(string.Empty, $".\\Series\\{topic.Key.ToLowerInvariant()}.html", new Dictionary() + project.AddOutput(new MetalsharpFile(string.Empty, $".\\Topics\\{topic.Key.ToLowerInvariant()}.html", new Dictionary() { ["title"] = topic.Key, ["topic"] = topic.Key,