File: /www/wwwroot/ahmsolaiman.com/wp-content/plugins/types/application/views/information/table.twig
<div class="types-information">
<table width="100%">
<thead>
<tr>
{% for cell in thead %}
<th width="{{ 100 / thead|length }}%">
{{ cell|raw }}
</th>
{% endfor %}
</tr>
</thead>
<tbody>
<tr>
{% if table.get_template() %}
<td>
{% for information in table.get_template() %}
{% include '@types/information/table/tbody-cell.twig' %}
{% endfor %}
</td>
{% endif %}
{% if table.get_archive() %}
<td>
{% for information in table.get_archive() %}
{% include '@types/information/table/tbody-cell.twig' %}
{% endfor %}
</td>
{% endif %}
<td>
{% for information in table.get_views() %}
{% include '@types/information/table/tbody-cell.twig' %}
{% endfor %}
</td>
<td>
{% for information in table.get_forms() %}
{% include '@types/information/table/tbody-cell.twig' %}
{% endfor %}
</td>
</tr>
</tbody>
</table>
</div>