This repository was archived by the owner on Jul 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.html
59 lines (56 loc) · 2.02 KB
/
community.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
---
layout: default
title: Our Community
subtitle: Know about our Community
permalink: /officers/
---
<div class="container officers">
<div class="row centered">
{% for officer in site.data.officers %}
<div class="col-lg-3 col-md-3 col-sm-6 officer">
<div class="avatar-container" href="#{{ officer.modal }}Modal" data-toggle="modal">
<img class="img-circle" src="{{ site.baseurl }}/img/officers/{{ officer.pic }}.jpg" />
<h4>{{ officer.name }}</h4>
<h5>{{ officer.position }}</h5>
</div>
<p>
{% for network in officer.social %}
<a href="{{ network.url }}">
<i class="fa fa-{{ network.title }}"></i>
</a>
{% endfor %}
</p>
</div>
{% endfor %}
</div>
</div>
{% for officer in site.data.officers %}
<div class="modal fade" id="{{ officer.modal }}Modal" tabindex="-1" role="dialog" aria-labelledby="{{ officer.modal }}Modal" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<img class="img-circle" src="{{ site.baseurl }}/img/officers/{{ officer.pic }}.jpg" />
<div class="officer-title">
<h1>{{ officer.name }}</h1>
<h3>{{ officer.position }}
<span class="modal-links">
{% for network in officer.social %}
<a href="{{ network.url }}">
<i class="fa fa-{{ network.title }}"></i>
</a>
{% endfor %}
</span>
</h3>
</div>
<p class="modal-description"><b>College: </b>{{ officer.college }}</p>
<p class="modal-description"><b>Major: </b>{{ officer.major }}</p>
<p class="modal-description"><b>How I believe a dog would wear pants:</b></p>
<img src="{{ site.baseurl }}/img/dog-pants/dog-pants-{{ officer.dog }}.gif"/>
</div>
</div>
</div>
</div>
{% endfor %}