{% extends "base.html" %} {% block base %}

{{ park.title }}

{% if park.id % 7 == 0 %} Phone

(not available)

{% endif %} Address

{% autoescape false %} {{ park.address|replace("\n","
") }} {% endautoescape %}

Jurisdiction

Chicago Parks

{# sometimes add another block in, we'll use the id to decide #} {% if park.id % 17 == 0 %}

Reserved

This section is reserved for future use.
{% endif %}

Description

{% autoescape false %} {{ park.description|replace("\n","
") }} {% endautoescape %}
{# sometimes add another block in, we'll use the id to decide #} {% if park.id % 5 == 0 %}

Other

This section is reserved for future use.
{% endif %} {# optional #} {% if park.history %}

History

{% autoescape false %} {{ park.history|replace("\n","
") }} {% endautoescape %}
{% endif %} {# sometimes add another block in, we'll use the id to decide #} {% if park.id % 11 == 0 %}

Other

This section is reserved for future use.
{% endif %}
{% endblock %}