--- ### ALL PAGES ### layout: themes/[ site.theme.id ]/frontend/core/base asset_path: blog/tags/tag ### PAGE CONFIG ### # Hero Section hero: subheadline: "Browse all posts with this tag" ---

{% uj_icon "tag", "fa-lg text-muted me-2" %} {{ 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 %}
{% for post in filtered_posts %} {% endfor %}
{% if filtered_posts.size == 0 %}
{% uj_icon "file-lines", "fa-4xl text-muted mb-3" %}

No posts with this tag

Check back soon for new content.

{% uj_icon "arrow-left", "me-2" %} All tags
{% endif %}
{{ content | uj_content_format }}