20 lines
426 B
HTML
20 lines
426 B
HTML
{%- if doc.selector %}
|
|
<section class="selectors">
|
|
<h2>Selectors</h2>
|
|
<table class="is-full-width list-table selector-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Selector</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{%- for selector in doc.selectorArray %}
|
|
<tr class="selector">
|
|
<td><code>{$ selector $}</code></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
{% endif %}
|