aboutsummaryrefslogtreecommitdiff
path: root/src/tags.json
blob: 3b2d3fef3eaae489a8165d1768875575567be793 (plain)
1
2
3
4
5
6
7
8
9
10
---
---
{ {% for icon in site.icons %}
{% assign slug-tags = icon.slug | split: '-' %}{% assign tags = slug-tags | concat: icon.tags %}  "{{ icon.slug }}": {
    "category": "{{ icon.category }}",
    "tags": [{% for tag in tags %}"{{ tag }}"{% unless forloop.last %}, {% endunless %}{% endfor %}],
    "version": "{{ icon.version }}",
    "unicode": "{{ icon.unicode }}"
  }{% unless forloop.last %}, {% endunless %}{% endfor %}
}