{% 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 == 'category' %}
{% include 'components/home/catTile.html' with cat=content.value.category label=content.value.label %}
{% elif content.block_type == 'image' %}
{{content.value.title}}
{% 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 %}
{% elif content.block_type == 'products' %}
{% for prod in content.value %}
{{prod.value.title}}
{% endfor %}
{% elif content.block_type == 'news' %} {% else %}
{{content.block_type}}
{% endif %}
{% endfor %}