Skip to content

Latest commit

 

History

History
30 lines (29 loc) · 715 Bytes

tools.md

File metadata and controls

30 lines (29 loc) · 715 Bytes
layout title
default
tools

{% assign categories = site.data.tools.tools | map: 'category' | uniq | sort %}

{% for category in categories %} {% assign cat = site.data.tools.categories | where_exp: 'c', 'c.id == category' %}

{{ cat[0].name }}

{% assign tools = site.data.tools.tools | where_exp: 't', 't.category == category' %}

{% for t in tools %}
{{ t.name }}
{{ t.name }}
{{ t.desc-brief }}
{{ t.desc-long }}
View on GitHub
{% endfor %}
{% endfor %}