{% extends 'layout_2.html' %} {% load cms_tags %} {% block content %}
{% if not page.get_children %}
{{page.title}}
{% if page.prDatasheet %} Datasheet {% endif %}

{% if page.prDesc %} {{page.prDesc|add_formating}} {% endif %}
{% else %}
{% for cat in page.get_children %} {% include 'components/productTile.html' with image=cat.specific.prImage %} {% endfor %}
{% endif %}
{% endblock content %}