<table class="c-table {% if table_class %} {{ table_class }} {% endif %}">
  {% if block("caption") %}
    <caption>
      {% block caption %}{% endblock %}
    </caption>
  {% endif %}

  {% if block("header") %}
    <thead>
      {% block header %}{% endblock %}
    </thead>
  {% endif %}

  <tbody>
    {% block body %}{% endblock %}
  </tbody>

  {% if block("footer") %}
    <tfoot>
      {% block footer %}{% endblock %}
    </tfoot>
  {% endif %}
</table>
