-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsponsors.html
43 lines (31 loc) · 1.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
---
layout: img_banner_style
permalink: /sponsors
bannerImage: assets/img/general/theLift.jpg
bannerCaption: Sponsorship
---
<!-- Main Container -->
<div class="container">
<br>
<p> No team can get off the ground without the generous support of sponsors! </p>
<p> Donations can be made through our 501c3 Organization, <b>Friends of Robot Casserole (EIN 92-3834452)</b></p>
<p> <a href=assets/documents/Sponsorship_Packet-2023-2024_v1p0.pdf> Our Sponsorship Packet</a> has additional information for those looking to partner with our mission of STEM Education!</p>
<p> If you are interested, please reach out to us at frc1736@gmail.com.</p>
<hr>
<p> FIRST Robotics Competition Team 1736 gratefully acknowledges the following sponsors: </p>
<!-- This little magic ditty is what parses the sponsors.yaml file and creates our list of sponsors -->
{% assign curYear = 'now' | date: "%Y" %}
{% for year in (2006..curYear) reversed %}
{% assign prevYear = year | plus:-1 %}
<h1> {{ prevYear }}-{{ year }} Season Sponsors </h1>
<ul>
{% for sponsor in site.data.sponsors %}
{% if sponsor.yearsActive contains year %}
<li><a href="{{sponsor.website}}"><img src="{{sponsor.logo}}" alt="{{sponsor.name}}" height="{{sponsor.logoHeight}}"/></a></li> <br>
{% endif %}
{% endfor %}
</ul>
<hr>
{% endfor %}
</div>
<!--End Main Container -->