<div class="article__table">
<div class="article__table__inner">
<table class="article__table__table">
<table class="article__table__table">
<thead class="article__table__thead">
{% for colheader in element.thead %}
<th>{{ colheader['text'] }}</th>
{% endfor %}
</thead>
<tbody class="article__table__body">
{% for row in element.tbody %}
<tr>
{% for col in row %}
<td>{{ col['text'] }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</table>
</div>
</div>