{% load brickwork_icons %} {% comment %} Directory (icvoss/django-brickwork#647): an ordered index of entries with an optional numeral, icon or logo, linked title, description, and meta column (version, status, install command). Structural sibling of _feature_list.html and the listing examples: a real
    , not a card grid and not a checklist. Required context: none. Optional context: heading (str): section intro heading. lede (str): section intro body. items (list of dicts): { number?, # str or int; omitted, the loop counter is used icon?, # registry name, rendered via {% bw_icon %} decorative logo?, # pre-rendered safe HTML (img or svg); preferred over # icon when both are present heading, # entry title url?, # when present, the title alone is the link (kit hover # affordance); the row is never a full-row anchor body?, # description version?, # meta column status?, # meta column install?, # meta column; rendered in }. List-shaped, so supply from context (#98). An empty (or omitted) items list renders the intro alone (or nothing if that too is empty), never a fabricated placeholder row. Absent optional fields are omitted from the markup. States: none. A linked title takes the standard link hover ink shift and the global :focus-visible ring; an unlinked title has no interactive state. Accessibility: section h2, each entry h3; a real
      (default markers suppressed; the visible numeral is the overline role, never list-style). Icons are decorative. Logo alt text is the caller's responsibility. Covered via sections-*.html after the example collapses to this include. Responsive: stack below --bw-breakpoint-md; number | mark | main | meta columns from md up. {% endcomment %} {% if heading or lede or items %}
      {% if heading or lede %}
      {% if heading %}

      {{ heading }}

      {% endif %} {% if lede %}

      {{ lede }}

      {% endif %}
      {% endif %} {% if items %}
        {% for item in items %} {% endfor %}
      {% endif %}
      {% endif %}