mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 17:56:16 +00:00
17 lines
619 B
HTML
17 lines
619 B
HTML
{% 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 %}
|
|
|
|
<div class="wallets" id="wallets" onclick="walletListener(event);" ontouchstart="walletListener(event);">
|
|
{% for wallet in site.wallets %}
|
|
<div>
|
|
<a href="/en/wallets/{{ wallet.id }}/#!platform={{ page.platform }}&os={{ page.os }}">
|
|
<img src="/img/wallet/{{ wallet.id }}.png" alt="{{ wallet.title }}" />
|
|
{{ wallet.titleshort }}
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|