Tips
{% comment %} Template to display blog posts filtered by tag 'Workout' {% endcomment %} {% assign tag = 'Treino' %} {% assign blog_handle = 'news' %} {# Replace 'news' with the correct handle of your blog #}
{% for article in blogs[blog_handle].articles %} {% if article.tags contains tag %}
{% endif %} {% endfor %}
{{ article.title }}
{{ article.excerpt | strip_html | truncate: 200 }}