-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsponsors.html
60 lines (59 loc) · 2.38 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
---
layout: default
title: Sponsors
permalink: /sponsors/
image: /assets/images/backgrounds/sponsors.jpg
---
<div class="container mb-5">
<div class="row">
<div class="col-md-12">
<p class="text-center">
We are very proud of our sponsors and their commitment to this event.
</p>
{% for group in site.data.sponsors.groups %}
{% if group.sponsors %}
<div class="container">
<div class="row">
<div class="col-12 sponsors__grid">
<h3>{{ group.title }}</h3>
<ul class="sponsors {{ group.name }}">
{% for item in group.sponsors %}
<li class="sponsor">
<a href="{{ item.link }}" title="{{ item.name }}">
<img src="/assets/images/sponsors/{{ item.logo }}" alt="{{ item.name }}" title="{{ item.name }}" />
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
<!--
<div class="row">
<div class="col-md-12">
<h2>Get Involved</h2>
<p>
Mage Titans is a partnership among the Magento developer community.
</p>
<p>
We hope that Mage Titans will continue to be an annual event and
an essential part of every Magento developer’s calendar. To do
this we need brilliant people to get involved. Interested?
Please download your Sponsorship Pack. We are also open to Gold,
Silver, and After-Party sponsors as well as the all-important
community supporters.
</p>
<p>
The complete sponsor pack will follow soon. Can’t wait for that? Please give us a call!
</p>
<p>
<a href="/assets/Sponsor_document_MageTitans_2024.pdf" target="_blank" title="Download sponsor document">Download</a>
</p>
</div>
</div>
-->
</div>