{% if node.title %}
{{ node.title }}
{% endif %}
{% if node.rows.head.size > 0 %}
{% for row in node.rows.head %}
{% for cell in row %}
{{ cell.content }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if node.rows.body.size > 0 %}
{% for row in node.rows.body %}
{% for cell in row %}
{{ cell.content }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if node.rows.foot.size > 0 %}
{% for row in node.rows.foot %}
{% for cell in row %}
{{ cell.content }} |
{% endfor %}
{% endfor %}
{% endif %}