{% assign services = site.data.services | where:'show', true %}
{% for item in services %}

{% assign icons_dir = "assets/images/icons/services/" %} {% assign icon_path = icons_dir | prepend: '/' | append: item.icon %} {% for static_file in site.static_files %} {% if static_file.path == icon_path %} {% assign icon_exists = true %} {% break %} {% endif %} {% endfor %}

{{ item.info }} {% if item.url %}

{% comment %} Link to a documentation page {% endcomment %} {{ item.name }} API pages

{% endif %}
{% endfor %}