{% if block.value.title %}
{{block.value.title}}
{% endif %}
{% for content in block.value.content %}
{% if content.block_type == 'heading' %}
{{content.value.title}}
{% elif content.block_type == 'paragraph' %}
{{content.value.text|safe}}
{% elif content.block_type == 'quote' %}
“
{{content.value.quote}}
”
{% elif content.block_type == 'image' %}

{% else %}
{{content.block_type}}
{% endif %}
{% endfor %}