{# Portfolio page fragment (ARG-187). Rendered inside portfolio.html for the
first page and returned bare by GET /portfolio/items for HTMX "더 보기"
cursor pagination. The active/quiet split is computed per loaded page, so
each page emits its own section headers only for non-empty groups. #}
{% if view.active %}
새 신호 있음
{% set items = view.active %}
{% include "_portfolio_cards.html" %}
{% endif %}
{% if view.quiet %}
조용함
{% set items = view.quiet %}
{% include "_portfolio_cards.html" %}
{% endif %}
{% if view.next_cursor %}
{% endif %}