{% 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 == 'category' %}
{% include 'components/home/catTile.html' with cat=content.value.category label=content.value.label %}
{% elif content.block_type == 'image' %}
{% elif content.block_type == 'tile_View' %}
{% for tile in content.value.tile_View %}
{% if content.value.tile_Type == 'Round' %}
{% include 'components/home/roundTile.html' with tile=tile.value %}
{% else %}
{% include 'components/home/NormalTile.html' with tile=tile.value %}
{% endif %}
{% endfor %}