{% for header in table[0] %}
{{ header }}
{% endfor %}
{% for row in table.slice(1) %}
{% for cell in row %}
{{ cell }}
{% endfor %}
{% endfor %}