angular-cn/aio/tools/transforms/templates/api/includes/selectors.html

20 lines
426 B
HTML
Raw Normal View History

2017-06-29 17:23:27 -04:00
{%- if doc.selector %}
<section class="selectors">
2017-04-24 13:49:37 -04:00
<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 %}