Skip to content

Latest commit

 

History

History
36 lines (32 loc) · 1.44 KB

support-grid.md

File metadata and controls

36 lines (32 loc) · 1.44 KB

{% assign supportTypesData = site.data.support-types.types %} {% assign supportType = supportTypesData | where: "slug", page.support_type | first %}

{% if supportType %}

{% for item in supportTypesData %} {% if item.slug == supportType.slug %}

{{item.display_name | capitalize }} ✓
{% else %}
{{item.slug | capitalize }} x
{% endif %} {% endfor %}
?
{% if supportType.support-note %}

{{supportType.support-note}}

{% endif %}
{% endif %}