Include allows templates to relate with other templates
Simply include another template:
{% include 'product' %}
Include a template with a local variable:
{% include 'product' with products[0] %}
Include a template for a collection:
{% include 'product' for products %}
[Validate]