forked from raviriley/agency-jekyll-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
75 lines (75 loc) · 2.41 KB
/
team.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!-- Team -->
{% if site.locale and site.locale != "" and site.locale != nil %}
<section class="page-section" id="{{ site.data.sitetext[site.locale].team.section | default: "team" }}">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">{{ site.data.sitetext[site.locale].team.title }}</h2>
<h3 class="section-subheading text-muted">{{ site.data.sitetext[site.locale].team.text }}</h3>
</div>
</div>
<div class="row d-flex justify-content-center">
{% for person in site.data.sitetext[site.locale].team.people %}
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="{{ person.image }}" alt="">
<h4>{{ person.name }}</h4>
<p class="text-muted">{{ person.role }}</p>
<ul class="list-inline social-buttons">
{% for network in person.social %}
<li class="list-inline-item">
<a href="{{ network.url }}">
<i class="{{ network.icon }}"></i>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
{% endfor %}
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<div class="large text-muted">{{ site.data.sitetext[site.locale].team.subtext | markdownify }}</div>
</div>
</div>
</div>
</section>
{% else %}
<section class="page-section" id="{{ site.data.sitetext.team.section | default: "team" }}">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">{{ site.data.sitetext.team.title }}</h2>
<h3 class="section-subheading text-muted">{{ site.data.sitetext.team.text }}</h3>
</div>
</div>
<div class="row d-flex justify-content-center">
{% for person in site.data.sitetext.team.people %}
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="{{ person.image }}" alt="">
<h4>{{ person.name }}</h4>
<p class="text-muted">{{ person.role }}</p>
<ul class="list-inline social-buttons">
{% for network in person.social %}
<li class="list-inline-item">
<a href="{{ network.url }}">
<i class="{{ network.icon }}"></i>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
{% endfor %}
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<div class="large text-muted">{{ site.data.sitetext.team.subtext | markdownify }}</div>
</div>
</div>
</div>
</section>
{% endif %}
<!-- End Team -->