/ templates / table.html
table.html
 1  <table>
 2    <caption>HEADLINE</caption>
 3    <thead>
 4      <tr>
 5        <th>TABLECONTENT</th>
 6        <th>TABLECONTENT_DESCRIPTION</th>
 7      </tr>
 8    </thead>
 9    <tbody>
10      <tr>
11        <td>LEFT</td>
12        <td>RIGHT</td>
13      </tr>
14      <tr>
15        <td>LEFT</td>
16        <td>RIGHT</td>
17      </tr>
18    </tbody>
19  </table>