mirror of
https://github.com/tabler/tabler.git
synced 2026-07-29 14:34:37 +04:00
9 lines
334 B
HTML
9 lines
334 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 limit: 10 %}
|
|
<option value="{{ country | escape }}"/>{% endfor %}
|
|
</datalist>
|
|
</div>
|