-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathofficers.html
executable file
·61 lines (58 loc) · 2.19 KB
/
officers.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
---
layout: default
title: Officers
subtitle: Learn about your leadership
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>Year: </b>{{ officer.year }}</p>
<p class="modal-description"><b>Major: </b>{{ officer.major }}</p>
<p class="modal-description"><b>Favorite Meal of the Day: </b>{{ officer.favorite_meal }}</p>
<p class="modal-description"><b>Favorite Ice-cream Flavor: </b>{{ officer.icecream_flavor }}</p>
<p class="modal-description"><b>How I Feel About Tech:</b></p>
<img src="{{ site.baseurl }}/img/gifs/tech-gif-{{ officer.gif }}.gif"/>
</div>
</div>
</div>
</div>
{% endfor %}