feather/_includes/icons.html

15 lines
446 B
HTML
Raw Normal View History

2017-11-05 19:55:16 +03:00
<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"
/>
2017-07-08 11:17:35 +03:00
<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>
2017-05-24 06:44:01 +03:00
</div>