mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
15 lines
446 B
HTML
15 lines
446 B
HTML
<div class="w-80 mw8 center" id="js-icons">
|
|
<input
|
|
type="search"
|
|
class="search fuzzy-search input-reset w-100 mb3 pv3 ph3 ph4-ns rubik f5 lh-copy bg-white br1 ba b--black-20"
|
|
placeholder="Search"
|
|
/>
|
|
<ul class="icon-grid mv0 pl0 list">
|
|
{% for file in site.static_files %}
|
|
{% if file.path contains 'dist/icons/' %}
|
|
{% include icon.html icon=file %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|