feather/_includes/icons.html

10 lines
257 B
HTML
Raw Normal View History

2017-07-08 11:17:35 +03:00
<div class="w-80 center">
<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>