diff --git a/_includes/layout/base/wallets-list.html b/_includes/layout/base/wallets-list.html index ce9d01f5..d48430c1 100644 --- a/_includes/layout/base/wallets-list.html +++ b/_includes/layout/base/wallets-list.html @@ -1,17 +1,19 @@ {% comment %} This file is licensed under the MIT License (MIT) available on http://opensource.org/licenses/MIT. -{% if wallet.compat contains page.platform and wallet.compat contains page.os %} -{% endif %} {% endcomment %}
{% for wallet in site.wallets %} + {% assign platform = page.platform['name'] %} + {% assign os = page.os['name'] %} + {% if wallet.compat contains platform and wallet.compat contains os %}
- + {{ wallet.title }} {{ wallet.titleshort }}
+ {% endif %} {% endfor %}
diff --git a/_includes/layout/base/wallets-menu.html b/_includes/layout/base/wallets-menu.html index 965b27dd..89603f4f 100644 --- a/_includes/layout/base/wallets-menu.html +++ b/_includes/layout/base/wallets-menu.html @@ -7,22 +7,36 @@ http://opensource.org/licenses/MIT. {% assign platformsByPlatform = site.platforms | group_by: "platform" %}