-
Notifications
You must be signed in to change notification settings - Fork 1
/
sponsors.html
45 lines (40 loc) · 1.33 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
---
layout: default
title: Our Sponsors
description: 'Spartan Robotics FRC 5724 would like to thank all of our gracious sponsors for supporting us.'
---
<main>
<!-- Sponsor page heading -->
<div class="container-fluid p-0">
<div class="col">
<h1 class="lg-heading">
Our Sponsors
</h1>
<h2 class="sm-heading">
A Special Thanks To Our Sponsors!
</h2>
</div>
</div>
<!-- Sponsor list -->
<div class="container-fluid">
<!-- This adds all of the sponsors that have logos. A few others are listed below. -->
<div class="row gy-1 row-cols-1 row-cols-sm-2 row-cols-lg-3 row-cols-xl-4">
{% for sponsor in site.data.sponsors %}
<div class="col gx-2">
<img class="sponsor-logo" src="/assets/img/sponsors/{{ sponsor.logo }}" alt="{{ sponsor.name }}" title="{{ sponsor.name }}">
{% assign site_stripped = sponsor.website | strip_newlines %}
{% if site_stripped == "" %}
<a href="#" class="btn-light">
{{ sponsor.name }}
</a>
{% else %}
<a href="{{ sponsor.website }}" target="_blank" class="btn-light">
{{ sponsor.name }}
<i class="fas fa-external-link-alt"></i>
</a>
{% endif %}
</div>
{% endfor %}
</div>
</div>
</main>