---
### ALL PAGES ###
layout: themes/[ site.theme.id ]/frontend/core/base
asset_path: blog/tags/tag
### PAGE CONFIG ###
# Hero Section
hero:
subheadline: "Every story on this thread, newest first."
---
{% comment %}
NEWSFLASH TAG ARCHIVE
Same data contract as classy's tag page (page.tag.name/slug + posts
filtered from site.posts), presented as a topic front: breadcrumb, serif
topic headline, and the same story-card grid as the blog index.
{% endcomment %}
The topic
{{ page.tag.name }}
{% iftruthy page.resolved.hero.subheadline %}
{{ page.resolved.hero.subheadline }}
{% endiftruthy %}
{% comment %} Filter posts by tag (max 100) {% endcomment %}
{% assign tag_slug = page.tag.slug %}
{% assign filtered_posts = '' | split: ',' %}
{% for post in site.posts %}
{% if filtered_posts.size >= 100 %}
{% break %}
{% endif %}
{% for tag in post.post.tags %}
{% assign t_slug = tag | slugify %}
{% if t_slug == tag_slug %}
{% assign filtered_posts = filtered_posts | push: post %}
{% break %}
{% endif %}
{% endfor %}
{% endfor %}
{% if filtered_posts.size > 0 %}