Table

Demo styling
<table>
    <thead>
        <tr>
            <th>Table header 1</th>
            <th>Table header 2</th>
            <th>Table header 3</th>
            <th>Table header 4</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Content goes here</td>
            <td>Content goes here</td>
            <td>Content goes here</td>
            <td>Content goes here</td>
        </tr>
        <tr>
            <td>Content goes here</td>
            <td>Content goes here</td>
            <td>Content goes here</td>
            <td>Content goes here</td>
        </tr>
    </tbody>
</table>
<table>
	<thead>
		<tr>
			{{#each items}}
				<th>{{title}} {{currentItem}}</th>
			{{/each}}
		</tr>
	</thead>
	<tbody>
		<tr>
			{{#each items}}
				<td>{{text}}</td>
			{{/each}}
		</tr>
		<tr>
			{{#each items}}
				<td>{{text}}</td>
			{{/each}}
		</tr>
	</tbody>
</table>
{
  "items": [
    {
      "title": "Table header",
      "text": "Content goes here",
      "currentItem": 1
    },
    {
      "title": "Table header",
      "text": "Content goes here",
      "currentItem": 2
    },
    {
      "title": "Table header",
      "text": "Content goes here",
      "currentItem": 3
    },
    {
      "title": "Table header",
      "text": "Content goes here",
      "currentItem": 4
    }
  ]
}

No notes defined.