feather/_includes/icons.html

8 lines
222 B
HTML
Raw Normal View History

2017-02-26 22:01:54 +03:00
<section>
{% for icon in site.data.icons %}
{% capture icon_path %}icons/{{ icon }}.svg{% endcapture %}
2017-02-26 23:27:46 +03:00
<div class="feather-icon">
{% include_relative {{ icon_path }} %}
</div>
2017-02-26 22:01:54 +03:00
{% endfor %}
</section>