{% extends 'cms/blocks/_block.html' %} {% load wagtailcore_tags %} {% block block_content %}
{% for info in value.infos %}
{% if info.block_type == 'svg_info' %} {% include 'cms/blocks/common/svg.html' with value=info.value block_num=block_num %} {% elif info.block_type == 'image_info' %} {% include 'cms/blocks/common/image.html' with value=info.value block_num=block_num %} {% endif %}

{{ info.value.title }}

{% include_block info.value.text_hover with theme=value.theme %}
{% endfor %}
{% endblock %}