mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
11 lines
423 B
HTML
11 lines
423 B
HTML
<div class="pv4">
|
|
<h2 class="mt0 mb4 f6 ttu tracked normal">{{ include.category | replace: '-', ' '}}</h2>
|
|
<ul class="icon-grid mv0 pl0 list">
|
|
{% capture category_path %}icons/{{ include.category }}{% endcapture %}
|
|
{% for icon in site.static_files %}
|
|
{% if icon.path contains category_path %}
|
|
{% include icon.html icon=icon %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div> |