This repository was archived by the owner on Mar 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsponsors.html
More file actions
49 lines (39 loc) · 1.8 KB
/
sponsors.html
File metadata and controls
49 lines (39 loc) · 1.8 KB
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
<!-- ## SPONSOR SECTION ## -->
<section class="sponsors qcContainer anchor-section" id="sponsors">
<div class="qcTabTitle clearfix">
<div>
<div class="col-4 col">
<h2 class="section-title">Sponsors</h2>
</div>
<div class="col-8 col">
<p class="qcTabDesc">For great employers, sponsorship is the most effective way to recruit talented, driven technologists fill key technical positions and demonstrate your commitment to the professional development of people of marginalized genders at your organization. Write/Speak/Code is a 501c3 nonprofit. Contact <a href="mailto:[email protected]" target="_top">[email protected]</a> to learn more.<br /> <br />
<a href="https://drive.google.com/file/d/1X-nDSHYiPiPT79Rc1xUAZCNxvr67ei6J/view?usp=sharing" target="_blank" rel="noopener" class="link coral">Read our 2019 Prospectus</a>
</div>
</div>
</div>
<div class="all-sponsors">
{% for package in site.data.sponsors.packages %}
{% if package.items.size > 0 %}
{% if include.is_conf == false or package.show_conf == include.is_conf %}
{% include sponsor_item.html package=package %}
{% endif %}
{% endif %}
{% endfor %}
{% for supporter in site.data.sponsors.supporters %}
{% assign mod = forloop.index | modulo: 2 %}
{% unless mod == 0 %}
<div class="sponsor-row">
{% endunless %}
{% if supporter.items.size > 0 %}
{% if include.is_conf == false or supporter.show_conf == include.is_conf %}
<div class="supporter">
{% include sponsor_item.html package=supporter %}
</div>
{% endif %}
{% endif %}
{% unless mod == 1 %}
</div>
{% endunless %}
{% endfor %}
</div>
</section>