diff --git a/_layouts/feature.html b/_layouts/feature.html index 0fe016c..3734698 100644 --- a/_layouts/feature.html +++ b/_layouts/feature.html @@ -66,6 +66,7 @@

{% comment %} 4. Let's start the loop! {% endcomment %} + {% assign has-unsupported = false -%} {% for family in page-families-in-order %} {% assign family-key = family -%} {% assign family-values = page.stats[family] -%} @@ -107,6 +108,7 @@

{% assign stat-class-name = 'supported' -%} {% when 'n' %} {% assign stat-class-name = 'unsupported' -%} + {% assign has-unsupported = true -%} {% when 'a' %} {% assign stat-class-name = 'mitigated' -%} {% when 'u' %} @@ -167,6 +169,9 @@

{% endfor %} + {% if has-unsupported and page.has_impl_urls %} +

Please check the resources section for links to the issue tracker. They often provide a feature to upvote issues and show your support.

+ {% endif %}