forked from glitch-user/students.iiitr.ac.in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpast-team.html
105 lines (83 loc) · 2.57 KB
/
past-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
---
title: Previous Team
layout: default
---
<style>
/* The page CSS will come here */
.button1 {
background-color: hsl(246, 32%, 51%);
color: black;
}
.button1:hover {
background-color: #2c2f7f;
color: white;
}
</style>
<!-- Contact cards -->
<section class="class section update-section" id="StudentCouncil">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-12 col-12 text-center mb-5">
<h2 data-aos="fade-up" data-aos-delay="200"><b>2020-2021 Council</b></h2>
</div>
{% assign council = site.categories['council-2020'] %}
{% for post in council %}
{% if post.session != NULL %}
<div class="col-lg-4 col-12" data-aos="fade-up" data-aos-delay="400">
<div class="council-cards">
{% if post.image != NULL %}
<img src="./assets/images/council/{{ post.image }}">
{% endif %}
<div class="council-cards-content text-center">
<h4 style="font-weight: 500;">
{{post.name}}<br>
</h4>
<h5>
{{post.designation}}<br>
Session {{post.session}}
</h5>
<a href="{{post.linkedin}}" target="_blank"
class="fa fa-linkedin council-cards-link"> </a>
<a href="mailto:{{post.email}}" target="_blank"
class="fa fa-envelope council-cards-link"> </a><br>
<a href="{{ post.url | absolute_url }}"><button class="btn button1">More</button></a>
<br><br>
</div>
</div>
</div>
{% endif %}
{% endfor %}
<div class="col-lg-12 col-12 text-center mb-5">
<h2 data-aos="fade-up" data-aos-delay="200"><b><br><br>2019-2020 Council</b></h2>
</div>
{% assign council = site.categories['council-2019'] %}
{% for post in council %}
{% if post.session != NULL %}
<div class="col-lg-4 col-12" data-aos="fade-up" data-aos-delay="400">
<div class="council-cards">
{% if post.image != NULL %}
<img src="./assets/images/council/{{ post.image }}">
{% endif %}
<div class="council-cards-content text-center">
<h4 style="font-weight: 500;">
{{post.name}}<br>
</h4>
<h5>
{{post.designation}}<br>
Session {{post.session}}
</h5>
<a href="{{post.linkedin}}" target="_blank"
class="fa fa-linkedin council-cards-link"> </a>
<a href="mailto:{{post.email}}" target="_blank"
class="fa fa-envelope council-cards-link"> </a><br>
<a href="{{ post.url | absolute_url }}"><button class="btn button1">More</button></a>
<br><br>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</section>