{% comment %} Related Projects Component - Auto-populates from same solution_category, excluding current project - Falls back to manually selected related_projects if set {% endcomment %} {% assign category_projects = site.projects | where: "solution_category", page.solution_category %} {% assign related = "" | split: "" %} {% for project in category_projects %} {% unless project.url == page.url %} {% assign related = related | push: project %} {% endunless %} {% endfor %} {% if related.size > 0 %} {% endif %}