bulma-extensions
Version:
Set of extensions for Bulma.io CSS Framework
34 lines (33 loc) • 725 B
HTML
<div class="table-container">
<table class="table is-bordered {{ table_class }}">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Default value</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Description</th>
<th>Default value</th>
</tr>
</tfoot>
<tbody>
{% for option in site.data.options %}
<tr>
<td >
<code style="white-space: nowrap;">{{ option.name }}</code>
</td>
<td >
{{ option.description }}
</td>
<td>
<code>{{ option.value }}</code>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>