forked from fossasia/gci17.fossasia.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mentors.html
54 lines (51 loc) · 1.51 KB
/
mentors.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
---
permalink: mentors
---
{% include header.html %}
<section class="bg-secondary">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1 text-center">
<h2>Mentors for you</h2>
</div>
</div>
<div class="row mb64 mb-xs-24">
<div class="col-sm-12 text-center spread-children-large">
{% for mentor in site.data.mentors %}
<div class="card">
{% if mentor.image %}
<img src="img/mentors/{{mentor.image}}" alt="{{ mentor.name }}">
{% else %}
<img src="img/mentors/member.png" alt="{{ mentor.name }}">
{% endif %}
<br>
<p class="mentor-name">{{ mentor.name }}</p><br>
<ul class="list-inline social-list">
{% if mentor.github %}
<a href="https://github.com/{{mentor.github}}" class="icon-a">
<i class="ti-github icon-i"></i>
</a>
{% endif %}
{% if mentor.twitter %}
<a href="https://twitter.com/@{{mentor.twitter}}" class="icon-a">
<i class="ti-twitter-alt icon-i"></i>
</a>
{% endif %}
{% if mentor.blog %}
<a href="https://{{mentor.blog}}" class="icon-a">
<i class="ti-rss-alt icon-i"></i>
</a>
{% endif %}
{% if mentor.facebook %}
<a href="https://facebook.com/{{mentor.github}}" class="icon-a">
<i class="ti-facebook icon-i"></i>
</a>
{% endif %}
</ul>
</div>
{% endfor %}
</div>
</div>
</div>
</section>
{% include footer.html %}