2017-02-27 02:15:28 +03:00
|
|
|
<section class="section icons">
|
|
|
|
<div class="container icons-container">
|
2017-03-01 08:32:33 +03:00
|
|
|
{% for icon in site.data['icons-manifest'] %}
|
|
|
|
{% capture icon_path %}icons/{{ icon }}.svg{% endcapture %}
|
2017-03-03 06:47:41 +03:00
|
|
|
<div class="feather-icon" tabindex="0">
|
2017-02-27 02:15:28 +03:00
|
|
|
{% include_relative {{ icon_path }} %}
|
2017-03-03 06:47:41 +03:00
|
|
|
<div class="tooltip">
|
|
|
|
<p class="tooltip-icon-name">{{ icon }}</p>
|
|
|
|
<!-- TODO: remove tabindex="-1" -->
|
|
|
|
<a class="tooltip-download" href="{{ icon_path }}" download tabindex="-1">Download</a>
|
|
|
|
</div>
|
2017-02-27 02:15:28 +03:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2017-02-26 22:01:54 +03:00
|
|
|
</section>
|