category.html 423 Bytes
Newer Older
Cole Bemis's avatar
Cole Bemis committed
1
<div class="pv4">
Cole Bemis's avatar
Cole Bemis committed
2 3
    <h2 class="mt0 mb4 f6 ttu tracked normal">{{ include.category | replace: '-', ' '}}</h2>
    <ul class="icon-grid mv0 pl0 list">
Cole Bemis's avatar
Cole Bemis committed
4 5 6 7 8 9 10 11
      {% 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>