-
Notifications
You must be signed in to change notification settings - Fork 0
/
sponsors.html
100 lines (88 loc) · 2.63 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
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
---
layout: normal
title: Sponsors
color: "#ff00b6"
bg_url: "/assets/images/shapes/Form2_pink_transparent.svg"
bg_position: "-10vw -40vh"
---
<div class="screen">
<header class="screen-header">
<h3>Sponsors</h3>
<p>A huge shout out to our generous sponsors and friends who make this event possible!</p>
</header>
</div>
{% assign platinum_sponsors = site.data.sponsors | where:'kind', 'Platinum' %}
{% assign premium_sponsors = site.data.sponsors | where:'kind', 'Premium' %}
{% assign startup_sponsors = site.data.sponsors | where:'kind', 'Startup' %}
{% assign basic_sponsors = site.data.sponsors | where:'kind', 'Basic' %}
{% assign friends = site.data.sponsors | where:'kind', 'Friend' %}
{% if platinum_sponsors.size > 0 %}
<div class="screen">
<header class="screen-header">
<h3>Platinum Sponsor</h3>
</header>
{% for sponsor in platinum_sponsors %}
<div class="screen-row">
<a class="screen-logo" target="_blank" rel="noopener" href="{{ sponsor.link }}">
<img src="{{ sponsor.logo }}" alt="{{ sponsor.name }} Logo">
</a>
</div>
{% endfor %}
</div>
{% endif %}
{% if premium_sponsors.size > 0 %}
<div class="screen">
<header class="screen-header">
<h3>Premium Sponsors</h3>
</header>
{% for sponsor in premium_sponsors %}
<div class="screen-row">
<a class="screen-logo" target="_blank" rel="noopener" href="{{ sponsor.link }}">
<img src="{{ sponsor.logo }}" alt="{{ sponsor.name }} Logo">
</a>
</div>
{% endfor %}
</div>
{% endif %}
{% if startup_sponsors.size > 0 %}
<div class="screen">
<header class="screen-header">
<h3>Startup Sponsors</h3>
</header>
{% for sponsor in startup_sponsors %}
<div class="screen-row">
<a class="screen-logo" target="_blank" rel="noopener" href="{{ sponsor.link }}">
<img src="{{ sponsor.logo }}" alt="{{ sponsor.name }} Logo">
</a>
</div>
{% endfor %}
</div>
{% endif %}
{% if basic_sponsors.size > 0 %}
<div class="screen">
<header class="screen-header">
<h3>Basic Sponsors</h3>
</header>
{% for sponsor in basic_sponsors %}
<div class="screen-row">
<a class="screen-logo" target="_blank" rel="noopener" href="{{ sponsor.link }}">
<img src="{{ sponsor.logo }}" alt="{{ sponsor.name }} Logo">
</a>
</div>
{% endfor %}
</div>
{% endif %}
{% if friends.size > 0 %}
<div class="screen">
<header class="screen-header">
<h3>Friends</h3>
</header>
{% for friend in friends %}
<div class="screen-row">
<a class="screen-logo" target="_blank" rel="noopener" href="{{ friend.link }}">
<img src="{{ friend.logo }}" alt="{{ friend.name }} Logo">
</a>
</div>
{% endfor %}
</div>
{% endif %}