{# the city-card changes the color using css #} {% macro city_block(list) %} {% if list %} {% for item in list %} {% if item.get('visible') %}
{{item.get('city')}}{% if item.get('state') %}, {{item.get('state').upper() }}{% endif %}
{% if item.get('coming_soon') %}
Coming Soon
{% else %}
Enter
{% endif %}
{% endif %} {% endfor %} {% endif %} {% endmacro %} {% macro block(title, link, button_text, color) %}
{{title}}
{{button_text}}
{% endmacro %}