forked from DevTips/Artists-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclients.html
43 lines (34 loc) · 1.43 KB
/
clients.html
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
<section class="section-clients">
<h3 id="clients">Clients</h3>
<div class="clients-mobile-nav">
{% for client in site.data.settings.clients %}
<span class="client-button {% if forloop.first %}active-client{% endif %}"></span>
{% endfor %}
</div>
<div class="clients-belt">
{% for client in site.data.settings.clients %}
<div class="client-unit {% if forloop.first %}active-client{% endif %}">
<figure class="client-face">
<img src="{{ site.github.url }}/assets/img/clients/{{ client.avatar }}" alt="client-face">
<figcaption>
<strong class="client-name">{{ client.name }}</strong>
<em class="client-title">{{ client.title }}</em>
</figcaption>
</figure>
<div class="client-content">
<div class="client-quote-mark">{% include icons/icon-quote-mark.html %}</div>
{{ client.quote }}
</div>
</div>
{% endfor %}
</div>
<div class="client-controls">
<div class="client-control-next">{% include icons/icon-next.html %}</div>
<div class="client-control-prev">{% include icons/icon-prev.html %}</div>
</div>
<div class="clients-logos">
{% for client in site.data.settings.clients %}
<img class="client-logo {% if forloop.first %}active-client{% endif %}" src="{{ site.github.url }}/assets/img/clients/{{ client.logo }}" align="{{ client.logo }}">
{% endfor %}
</div>
</section>