diff --git a/indymeet/templates/blocks/left-image-right-text.html b/indymeet/templates/blocks/left-image-right-text.html index d6350959..a3cdf739 100644 --- a/indymeet/templates/blocks/left-image-right-text.html +++ b/indymeet/templates/blocks/left-image-right-text.html @@ -5,7 +5,7 @@
{% image value.image width-1000 %}
-

{{ value.text|safe|urlize }}

+

{{ value.text|safe|urlize|linebreaks }}

diff --git a/indymeet/templates/blocks/right-image-left-text.html b/indymeet/templates/blocks/right-image-left-text.html index c3a9db7e..3bec9de6 100644 --- a/indymeet/templates/blocks/right-image-left-text.html +++ b/indymeet/templates/blocks/right-image-left-text.html @@ -4,7 +4,7 @@
-

{{ value.text|safe|urlize }}

+

{{ value.text|safe|urlize|linebreaks }}

{% image value.image width-1000 %}
diff --git a/indymeet/templates/blocks/text-image-heading.html b/indymeet/templates/blocks/text-image-heading.html index 24237d4a..6b5e30da 100644 --- a/indymeet/templates/blocks/text-image-heading.html +++ b/indymeet/templates/blocks/text-image-heading.html @@ -6,7 +6,7 @@

{{ value.heading|safe }}

{% image value.image fill-900x700 %}
-

{{ value.text|safe|urlize }}

+

{{ value.text|safe|urlize|linebreaks }}

diff --git a/indymeet/templates/blocks/text-with-heading-left-image.html b/indymeet/templates/blocks/text-with-heading-left-image.html index 24237d4a..6b5e30da 100644 --- a/indymeet/templates/blocks/text-with-heading-left-image.html +++ b/indymeet/templates/blocks/text-with-heading-left-image.html @@ -6,7 +6,7 @@

{{ value.heading|safe }}

{% image value.image fill-900x700 %}
-

{{ value.text|safe|urlize }}

+

{{ value.text|safe|urlize|linebreaks }}

diff --git a/indymeet/templates/blocks/text-with-heading-right-image.html b/indymeet/templates/blocks/text-with-heading-right-image.html index b232b301..55a5d8df 100644 --- a/indymeet/templates/blocks/text-with-heading-right-image.html +++ b/indymeet/templates/blocks/text-with-heading-right-image.html @@ -5,7 +5,7 @@

{{ value.heading|safe
-

{{ value.text|safe|urlize }}

+

{{ value.text|safe|urlize|linebreaks }}

{% image value.image fill-900x700 %}
diff --git a/indymeet/templates/blocks/text-with-heading.html b/indymeet/templates/blocks/text-with-heading.html index eeae2b6b..01f46367 100644 --- a/indymeet/templates/blocks/text-with-heading.html +++ b/indymeet/templates/blocks/text-with-heading.html @@ -2,7 +2,7 @@

{{ value.heading }}

-

{{ value.text|safe|urlize }}

+

{{ value.text|safe|urlize|linebreaks }}