Dicas

{% comment %} Template para exibir posts do blog filtrados por tag 'Treino' {% endcomment %} {% assign tag = 'Treino' %} {% assign blog_handle = 'news' %} {# Substitua 'news' pelo handle correto do seu blog #}
{% for article in blogs[blog_handle].articles %} {% if article.tags contains tag %}

{{ article.title }}

{{ article.excerpt | strip_html | truncate: 200 }}
{% endif %} {% endfor %}