Displaying blog tags on blog posts

Add a “Custom liquid” section, say, at the top of the template and paste this code:

{% if article.tags.size > 0 %}
  
    {% for t in article.tags %}
      
          {{ t | capitalize }}
      
    {% endfor %}
  

{% endif %}

Will produce this: