feather/_includes/icons.html

10 lines
305 B
HTML
Raw Normal View History

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