Style icons section

This commit is contained in:
Cole Bemis
2017-02-26 15:15:28 -08:00
parent 3f00ee3ef5
commit ad8509dd2f
2 changed files with 18 additions and 9 deletions

View File

@ -1,8 +1,10 @@
<section>
{% for icon in site.data.icons %}
{% capture icon_path %}icons/{{ icon }}.svg{% endcapture %}
<div class="feather-icon">
{% include_relative {{ icon_path }} %}
</div>
{% endfor %}
<section class="section icons">
<div class="container icons-container">
{% for icon in site.data.icons %}
{% capture icon_path %}icons/{{ icon }}.svg{% endcapture %}
<div class="feather-icon">
{% include_relative {{ icon_path }} %}
</div>
{% endfor %}
</div>
</section>