-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathsponsored-events.html
More file actions
50 lines (42 loc) · 1.98 KB
/
sponsored-events.html
File metadata and controls
50 lines (42 loc) · 1.98 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
50
{% extends 'default.html' %}
{% block content %}
<section>
<h1>Supported Events</h1>
<p>Black Python Devs aims to partner with Python conferences and events around the world to increase the visibility and opportunities for Black developers and leaders in the Python community.</p>
<p>We believe that sponsorships does the following:</p>
<ul>
<li>👫 - raises awareness amongst our community to attend events.</li>
<li>🌐 - supports Python events that are accessible to black communities</li>
</ul>
<p>Here is a look at events this year that we've supported:</p>
</section>
<section>
<h2>Events Sponsored by year</h2>
{% for segment_year in data | sort(reverse=True) %}
{% if segment_year == year %}
<details name="{{segment_year}}" open>
{% else %}
<details name="{{segment_year}}">
{% endif %}
<summary>{{segment_year}}</summary>
<section class="grid">
{% for segment in data[segment_year] | sort %}
<article>
<h3>{{segment}}</h3>
{% for event in data[segment_year][segment] | sort %}
<p>{{event}}</p>
{% endfor %}
</article>
{% endfor %}
</section>
</details>
<hr/>
{% endfor %}
</section>
<p>Interested in Black Python Devs supporting your event. Review our <a href="https://github.com/BlackPythonDevs/blackpythondevs/blob/main/policies/event-grants.md#22-budget-considerations">Grant Criteria</a> and email your prospectus to <a href="mailto:sponsorships@blackpythondevs.com">sponsorships@blackpythondevs.com</a></p>
</section>
<section>
<h2>Regular Meetups</h2>
<p>Join us every Friday for a cup of coffee and a chance to code with fellow Python enthusiasts. Our community is open to all levels of experience, sharing tips and tricks, and working on projects together. Whether you're looking to learn something new or just want to hang out with like-minded people, this is the perfect opportunity to do so. We look forward to seeing you there!</p>
</section>
{%endblock %}