aboutsummaryrefslogtreecommitdiffstats
path: root/views/tags.ejs
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2024-03-16 03:38:22 +0000
committerterminaldweller <devi@terminaldweller.com>2024-03-16 03:38:22 +0000
commitb3177ce282e15dab29f5fefb9ff787583db512f5 (patch)
tree986cd667d900f621b106f2a7b69e5f491037d66a /views/tags.ejs
parentfixed a weird one-off issue with a line (diff)
downloadblog-b3177ce282e15dab29f5fefb9ff787583db512f5.tar.gz
blog-b3177ce282e15dab29f5fefb9ff787583db512f5.zip
fixed the tags names that appear for articles, the names are proper now
Diffstat (limited to 'views/tags.ejs')
-rw-r--r--views/tags.ejs2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/tags.ejs b/views/tags.ejs
index eeb81fb..a23624e 100644
--- a/views/tags.ejs
+++ b/views/tags.ejs
@@ -14,7 +14,7 @@
<br/>
<% data.blogPosts.forEach(function(blogPost){ %>
<ul>
- <li><a href=<%= "/posts/"+ blogPost.slug %> target="_self" rel="noreferrer noopener" type="text/html"><%= blogPost.slug %></a></li>
+ <li><a href=<%= "/posts/"+ blogPost.slug %> target="_self" rel="noreferrer noopener" type="text/html"><%= blogPost.title %></a></li>
</ul>
<% }) %>
<br/>