{% load cms_tags smart_image %}{% spaceless %} {% with features=instance.get_features %}
{% if instance.title %}
{{ instance.title }}
{% endif %} {% if instance.image %}
{% media_thumb instance.image "250x200" as thumb %} {{ instance.image_alt }}
{% endif %} {% if instance.content %}
{{ instance.content|safe }}
{% endif %} {% if instance.child_plugin_instances %}
{% for plugin in instance.child_plugin_instances %} {% with parent_features=features %} {% render_plugin plugin %} {% endwith %} {% endfor %}
{% endif %}
{% endwith %} {% endspaceless %}