{% load cms_tags %} {% load wagtailimages_tags %}
{% 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' %} {{content.value.title}} {% elif content.block_type == 'show_services' %}
{% else %}
{{content.block_type}}
{% endif %}
{% endfor %}