forked from claiduiuc/CLAID-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
120 lines (110 loc) · 3.48 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
---
title: Team
layout: default
bodyClass: page-team-list
---
<style type="text/css">
@media screen and (max-width: 800px) {
#div-desktop-text {
padding-left:20px;
padding-right:20px;
}
#div-desktop {
width: 100%;
}
}
@media screen and (min-width: 800px) {
.mycol {
width: 50%;
padding: 0px;
float: right;
margin:0px;
}
}
.intro h1 { color: #db505e; font-size: 2.4rem; line-height: 1.2; font-family: "Comfortaa", Comfortaa, sans-serif, -apple-system; width: 70%; }
@media (min-width: 576px) { .intro h1 { width: 70%; } }
@media (min-width: 768px) { .intro h1 { font-size: 3rem; width: 70%; } }
@media (min-width: 992px) { .intro h1 { font-size: 3rem; width: 80%; } }
.intro p { width: 80%; font-size: 1.1rem; font-weight: lighter; line-height: 1.4; color: #414156; }
@media (min-width: 576px) { .intro p { width: 70%; } }
@media (min-width: 768px) { .intro p { width: 60%; } }
@media (min-width: 992px) { .intro p { width: 70%; } }
</style>
<div class="intro">
<div class="container">
<div class="row">
<div class="mycol" id="div-desktop-text">
<h1>Meet The Board</h1>
<p>
We're students that are committed and passionate about building connections.
</p>
<p>
<!--Note to developer: Simply comment/uncomment either of the two below lines to open/close board applications.
Please don't delete either of the lines! This will make it easier for future changes :)-->
Board applications are now closed. We will begin accepting applications next semester.
<!-- Our board applications are open for this semester! Click <a href="board-application.html">here</a> to apply. -->
</p>
</div>
<div id="div-desktop-text" class="mycol">
<img alt="group photo" src="/images/team/claid group photo.JPG" id="div-desktop"/>
</div>
</div>
</div>
</div>
<div class="container pb-6" id="div-desktop-text">
<div class="row">
{% for team in site.team %}
{% if team.active == "yes" %}
<div class="col-12 col-md-6 mb-1">
<div class="team team-summary">
{% if team.image %}
<div class="team-image">
<img
alt="{{ team.title }} logo"
class="img-fluid mb-2"
src="{{site.baseurl}}{{ team.image }}"
/>
</div>
{% endif %}
<div class="team-meta">
<h2 class="team-name">{{ team.title }}</h2>
<h5 class="team-description">{{ team.jobtitle }}</h5>
</div>
<div class="team-content">{{ team.content }}</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
<div class="container pb-6" id="div-desktop-text">
<div class="row">
<h1>Alumni</h1>
</div>
</div>
<div class="container pb-6" id="div-desktop-text">
<div class="row">
{% for team in site.team %}
{% if team.alumni == "yes"%}
<div class="col-12 col-md-6 mb-1">
<div class="team team-summary">
{% if team.image %}
<div class="team-image">
<img
alt="{{ team.title }} logo"
class="img-fluid mb-2"
src="{{site.baseurl}}{{ team.image }}"
/>
</div>
{% endif %}
<div class="team-meta">
<h2 class="team-name">{{ team.title }}</h2>
<h5 class="team-description">{{ team.jobtitle }}</h5>
</div>
<div class="team-content">{{ team.content }}</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>