Simplifies layouts for wallet platforms and wallet details.

This commit is contained in:
Igor Kuzmenko 2017-07-17 22:22:39 +02:00
parent d3b7128f74
commit 7796794858
15 changed files with 177 additions and 71 deletions

View file

@ -0,0 +1,17 @@
{% 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>
<img src="/img/wallet/{{ wallet.id }}.png" alt="{{ wallet.title }}" />
{{ wallet.titleshort }}
</a>
</div>
{% endfor %}
</div>