layout | title |
---|---|
default |
Browse by state |
{% include base.html %}
Browse the open-data policies listed by state:
-
{% for state in site.states %}
{% assign counter = 0 %}
{% for place in site.places %}
{% if place.states contains state.state_code %}
{% assign counter = counter | plus: 1 %}
{% endif %}
{% endfor %}
{% if counter > 0 %}
- {{ state.title }} ({{ counter }}) {% endif %} {% endfor %}