diff --git a/scrapple/templates/park_detail.html b/scrapple/templates/park_detail.html
index f81d8cf..927211b 100644
--- a/scrapple/templates/park_detail.html
+++ b/scrapple/templates/park_detail.html
@@ -8,6 +8,7 @@
- {# 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 %}
-
+ {# divisors of 11, description comes first #}
+ {% if park.id % 11 == 0 %}
Description
@@ -58,6 +50,19 @@
This section is reserved for future use.
+
+ {# usually this block is down here #}
+ {% if park.id % 11 != 0 %}
+
+
+
Description
+
+ {% autoescape false %}
+ {{ park.description|replace("\n","
") }}
+ {% endautoescape %}
+
+
+
{% endif %}
{# optional #}
@@ -74,7 +79,7 @@
{% endif %}
{# sometimes add another block in, we'll use the id to decide #}
- {% if park.id % 11 == 0 %}
+ {% if park.id % 15 == 0 %}