{% extends 'base.html' %} {% block content %}

{{ product.title }}

{{ current_node.question }}
{% if current_node.content %}
{{ current_node.content|safe }}
{% endif %} {% if current_node.images %}
{% if current_node.images|length == 1 %} {% set image = current_node.images|first %}
Node image {% if image.caption %}
{{ image.caption }}
{% endif %}
{% else %} {% endif %}
{% endif %} {% if current_node.image_url and not current_node.images %}
Node image
{% endif %} {% if current_node.youtube_embed_url %}
{% endif %} {% if current_node.is_terminal %}
This is the end of this path. Start over
{% else %}
{% if current_node.yes_node %} Yes {% endif %} {% if current_node.no_node %} No {% endif %}
{% endif %}
{% endblock %}