forked from ritsec/ritsec.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sponsors.html
81 lines (74 loc) · 2.25 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
---
layout: info_page
title: Sponsors
description: >
<a style="padding-left:1.5em; text-decoration: none; font-size: 150%;" href="/sponsorship.pdf">Benefits of Sponsorship</a>
<br>
<br>
---
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
{% assign tiers = "Diamond, Platinum, Gold, Silver, Bronze, Educational" | split: ', ' %}
{% for tier in tiers%}
<div class="row" style="text-align: center">
<h2 style="text-align:center">{{tier}}</h2>
<br />
{% assign count = 0 %}
{% for sponsor in site.data.sponsors %}
{% if {{sponsor.tier}} == {{tier}} %}
{% assign link = sponsor.link %}
{% assign remainder = {{count}} | modulo: 3 %}
{% if remainder == 0 and count > 0 %}
<br>
{%endif%}
{% assign count = count | plus: 1 %}
<div
class="col-lg-2 col-md-4 col-sm-3 col-xs-6"
style="display: inline-block;float: none;"
>
<a href="{{ link }}" target="_blank">
{% if sponsor.name == "Expel" or sponsor.name == "Security Risk Advisors" or sponsor.name
== "Indeed" %}
<img
style="text-align:center; position: relative; top: -50px"
class="ritsec-thumbnail img-responsive"
src="assets/images/sponsorLogos/{{ sponsor.image }}"
alt="{{ sponsor.name }}"
/>
{% elsif sponsor.name == "MITRE" or sponsor.name == "Redbull" or sponsor.name == "Carrier"%}
<img
style="text-align:center; position: relative; top: -35px"
class="ritsec-thumbnail img-responsive"
src="assets/images/sponsorLogos/{{ sponsor.image }}"
alt="{{ sponsor.name }}"
/>
{% elsif sponsor.name == "Caetra.io" %}
<img
style="text-align:center; position: relative; top: -60px"
class="ritsec-thumbnail img-responsive"
src="assets/images/sponsorLogos/{{ sponsor.image }}"
alt="{{ sponsor.name }}"
/>
{% elsif sponsor.name == "Charles River Associates" %}
<img
style="text-align:center; position:relative; top: -45px; max-width: 200px; max-height: 200px;"
src="assets/images/sponsorLogos/{{ sponsor.image }}"
alt="{{ sponsor.name }}"
/>
{% else %}
<img
class="ritsec-thumbnail img-responsive center"
src="assets/images/sponsorLogos/{{ sponsor.image }}"
alt="{{ sponsor.name }}"
/>
{%endif%}
</a>
</div>
{% endif %} {% endfor %}
</div>
{% endfor %}