-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsponsors.html
50 lines (44 loc) · 1.3 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
48
49
50
---
layout: about
title: Our Sponsors
navbar: sponsors
---
<div class="page-header">
<h1>Our Sponsors</h1>
</div>
<p class="lead text-center">
We are always very thankful for our sponsors. MegaMinerAI would not
be possible without them.
Their generous donations help us host our competitions as well as
develop our games and framework.
<br>
From all of us, <strong>thank you</strong>!
</p>
{% for sponsor in site.data.sponsors %}
{% assign count = forloop.index0 | modulo:3 %}
{% if count == 0 %}<div class="row">{% endif %}
<div class="col-xs-12 col-sm-4 sponsor">
<a href="#{{ sponsor.id }}" class="thumbnail sponsors_thumbnail">
<img data-src="holder.js/300%x200" alt="{{ sponsor.name }}"
src="{{ site.static_url }}img/sponsor_logos/{{ sponsor.image }}">
</a>
</div>
{% if count == 2 or forloop.index == forloop.length %}</div>{% endif %}
{% endfor %}
<hr>
{% for sponsor in site.data.sponsors %}
<div id="{{ sponsor.id }}" class="row">
<div class="col-xs-12">
<div class="pull-right">
<a href="#" class="btn btn-info btn-sm">
<i class="fa fa-arrow-up fa-inverse"></i>
</a>
</div>
<h2><a href="{{ sponsor.url }}">{{ sponsor.name }}</a></h2>
{{ sponsor.description }}
</div>
</div>
{% unless forloop.last %}
<hr>
{% endunless %}
{% endfor %}