1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-28 14:04:38 +04:00
Files
tabler/pages/_includes/parts/input-datalist.html
T
2019-09-25 20:55:11 +02:00

10 lines
331 B
HTML

<div class="mb-3">
<label class="form-label">Datalist example</label>
<input class="form-control" list="datalistOptions" placeholder="Type to search..." />
<datalist id="datalistOptions">
{% for country in site.data.countries %}
<option value="{{ country | escape }}">
{% endfor %}
</datalist>
</div>