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

{{ page.category.name }}

{% iftruthy page.resolved.hero.subheadline %}

{{ page.resolved.hero.subheadline }}

{% endiftruthy %}
{% comment %} Filter posts by category (max 100) {% endcomment %} {% assign category_slug = page.category.slug %} {% assign filtered_posts = '' | split: ',' %} {% for post in site.posts %} {% if filtered_posts.size >= 100 %} {% break %} {% endif %} {% for category in post.post.categories %} {% assign cat_slug = category | slugify %} {% if cat_slug == category_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 in this category

Check back soon for new content.

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