-
Notifications
You must be signed in to change notification settings - Fork 3
/
instructors.html
50 lines (48 loc) · 2.04 KB
/
instructors.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
---
layout: default
title: Instructors
---
<section id="content" class="container">
{% include section-header.html title="Meet the Instructors" color="primary" %}
<div class="row" id="top">
<div class="col-md-10 offset-md-1 col-lg-8 offset-lg-2">
{% for instructor in site.data.people %}
<div class="m-b-2" id="{{instructor[1].shortname}}">
<div class="btn-group btn-group-sm pull-right" role="group" aria-label="{{instructor[1].title}}">
{% if instructor[1].email != '' %}
<a href="mailto:{{instructor[1].email}}" class="btn btn-primary"><i
class="fa fa-envelope"></i></a>
{% endif %}
{% if instructor[1].website != '' %}
<a href="{{instructor[1].website}}" class="btn btn-primary"><i class="fa fa-globe"></i></a>
{% endif %}
{% if instructor[1].github != '' %}
<a href="{{instructor[1].github}}" class="btn btn-primary"><i class="fa fa-github"></i></a>
{% endif %}
{% if instructor[1].twitter != '' %}
<a href="http://twitter.com/{{instructor[1].twitter}}" class="btn btn-primary"><i class="fa fa-twitter"></i></a>
{% endif %}
<a href="#page-top" class="btn btn-primary page-scroll"><i class="fa fa-chevron-up"></i></a>
</div>
<h3 class="instructor-name">{{instructor[1].name}}</h3>
{% if instructor[1].title != '' %}
<p class="text-muted">
<span class="instructor-title">{{instructor[1].title}}</span>
</p>
{% endif %}
{% if instructor[1].image != '' %}
<div class="col-sm-2">
<img class="img-fluid" src="{{ instructor[1].image | prepend: '/images/people/' | prepend: site.baseurl }}" alt="{{instructor[1].name}}">
</div>
<div class="col-sm-10">
{% else %}
<div class="col-sm-12">
{% endif %}
<div class="instructor-bio p-t-1 m-b-2">{{instructor[1].bio}}</div>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
{% include partners.html %}