-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsponsors.html
47 lines (46 loc) · 1.85 KB
/
sponsors.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
---
layout: sponsors
title: Sponsors
permalink: /sponsors
noTopSpacing: true
---
<div class="container tiles">
<div class="row p-3">
<div class="col-md-12">
<p>We realise that we need to associate ourselves with great companies to
grow and reach more and more people. With this aim in mind, each year we conduct
many events which aim at bringing the students closer to the industry so that they
come up with their own unique solutions to the problems in each sector. All these
events do require a lot of funding to be successful.
It is our sponsors who help us in our endeavours not only monetarily but also
with their experience. If you would like to sponsor us, reach out to us at
<a href="mailto:[email protected]">[email protected]</a>
We would love to hear back from you.
</p>
</div>
</div>
<hr>
{% for sponsor in site.data.sponsors %}
<div class="row p-3">
<div class="col-md-12">
<h1>Our {{ sponsor.sponsors }} </h1>
</div>
</div>
<div class="row">
{% for member in sponsor.members %}
{% if sponsor.sponsors == "Sponsors" %}
<div class="col-md-3 p-3 text-center my-auto">
{% else %}
<div class="col-md-4 p-3 text-center my-auto">
{% endif %}
<img class="img-fluid" style="max-height: 150px;" src="{{ site.baseurl }}/assets/imgs/sponsors/{{ member.logo }}" alt="{{ member.name }}">
</div>
{% endfor %}
</div>
<hr>
{% endfor %}
</div>
<script>
ScrollReveal().reveal('.col-md-3',{interval:150});
ScrollReveal().reveal('.col-md-4',{interval:150});
</script>