We are using the Debut Theme. On our blog navigation page, I want it to be obvious that the tag is a search function.
Currently, below the article image/blog title/author + date lines, the blog tag is printed out and hyperlinked to filter just on that term.The code for this is in our blog-template.liquid file:
{% if article.tags.size > 0 %}
-
{% for tag in article.tags %}
- {{ tag }} {% endfor %}
I want to amend the text to be #blogtag while continuing to function as hyperlinked to opening a filter on that blogtag.
In the image below, I show our blog filtered on the tab “Introducing Gamer Terms.” The green circles indicate where I want the hashtags to print out on the page. How do I do that?


