{# Every probe that ran on the gold: the ones that fired, the ones that stayed quiet and the ones that did not apply, each with what the file says the probe means. #} {% macro probe_list(page, rows_table) %}

The probes

{{ page.probes_reading }}

{% for probe in page.probes %}

{% if probe.fired %} {{ probe.name }} {% else %} {{ probe.name }} {% endif %} {{ probe.state }}

{% if probe.means %}

{{ probe.means }}

{% endif %} {% if probe.reason %}

{{ probe.reason }}

{% endif %} {% if probe.rows %} {{ rows_table(probe.rows) }} {% endif %}
what it measured
{{ probe.evidence }}
{% endfor %}
{% endmacro %}