layout: strip title: Content permalink: /content/ published: true ---
{% assign sorted = site.data.locations | sort: 'name_sm' | where_exp: "l", "l.slug != 'baby_shark' and l.slug != 'blue'" %}
{% for l in sorted %}
{% if l.disc_url %} {{ l.name_sm }} {% endif %}
{{ l.name_sm }}
{% if l.missingCodes.size > 0 %} missing codes:
{% for code in l.missingCodes %}
{{ code }}
{% endfor %} {% if l.missingContact.size > 0 %} {% for contact in l.missingContact %}
{{ contact }}
{% endfor %} {% endif %}
{% else %} no missing codes {% endif %}
Counts
{% for pair in l.counts %} {% assign name = pair[0] | replace: '-', ' ' | capitalize %} {% assign num = pair[1] | default: 0 %} {% assign key_name = pair[0] %} {% assign is_red = false %} {% if key_name == 'Building-photo-gallery' and num < 5 %} {% assign is_red = true %} {% elsif key_name == 'staff-leadership' and num < 5 %} {% assign is_red = true %} {% elsif key_name == 'awards' and num <= 1 %} {% assign is_red = true %} {% elsif key_name != 'awards' and key_name != 'Building-photo-gallery' and key_name != 'staff-leadership' and num == 0 %} {% assign is_red = true %} {% endif %}
{{ name }}{{ num }}
{% endfor %}
{% endfor %}