forked from slimcoin-project/slimcoin-project.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-ru.html
More file actions
53 lines (52 loc) · 1.81 KB
/
index-ru.html
File metadata and controls
53 lines (52 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
layout: home-layout
ref: index
lang: ru
menuitem: Home
priority: 1
requiresSemanticCard: true
---
<div class="home">
<div class="ui secondary page stackable grid overview segment segment-padding" id="actions">
<h5 class="ui header center aligned not-on-mobile">
КУПИТЬ
</h5>
<div class="ui stackable centered center aligned grid">
{% for exchange in site.exchanges %}
<div class="five wide column center aligned pointer-cursor" onclick="openUrl('{{ exchange.url }}')">
<div class="ui raised segment mobile-card">
<h2 class="ui icon header">
<i class="icon"><img src="{{ '/assets/logo.svg' | prepend: site.baseurl }}" class="ui small image"></i>
<div class="content">
{{ exchange.name }}
<div class="sub header">{{ exchange.url }}</div>
</div>
</h2>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="ui page stackable grid overview segment segment-padding center aligned" id="actions">
<div class="centered column">
<h5 class="ui center aligned icon header">
СКАЧАТЬ
</h5>
<div class="ui center aligned grid">
{% for wallet in site.wallets %}
<div class="three wide column pointer-cursor" onclick="openUrl('{{ wallet.url }}')">
<div class="ui card">
<div class="image">
<img src="{{ wallet.logo | prepend: site.baseurl }}">
</div>
<div class="extra content not-on-mobile">
<i class="{% if wallet.ico %}{{ wallet.ico }}{% else %}cloud download{% endif %} icon"></i>
{{ wallet.name }}
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>