Skip to content

Commit 683119c

Browse files
committed
add leadership-summit
1 parent 5254931 commit 683119c

File tree

5 files changed

+149
-3
lines changed

5 files changed

+149
-3
lines changed

.prettierignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
index.html
22
assets/js/jquery.min.js
33
assets/js/index.js
4-
_layouts/default.html
5-
_layouts/index.html
6-
_layouts/post.html
4+
_layouts/*.html
75
_includes/conferences.html
86
_includes/header.html
97
_includes/social.html

_layouts/event.html

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
<!doctype html>
2+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1" />
6+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}" />
7+
<title>{% if page.title %}{{ site.title }} | {{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
8+
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}" />
9+
<link rel="stylesheet" href="{{ '/assets/css/pico.min.css' | relative_url }}" />
10+
<link rel="stylesheet" href="{{ '/assets/css/pico.colors.min.css' | relative_url }}" />
11+
<link rel="stylesheet" href="{{ '/assets/css/bpd.css' | relative_url }}" />
12+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}" />
13+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ '/feed.xml' | prepend: site.baseurl | prepend: site.url }}" />
14+
<link rel="icon" href="https://fav.farm/%E2%9C%8A%F0%9F%8F%BE" type="image/svg" />
15+
{% if page.lang and page.untranslated != true and site.data.locales.size > 1 %}
16+
{% assign locales = site.data.locales | sort %}
17+
{% for locale in locales %}
18+
{% assign lang = locale[0] %}
19+
{% assign page_lang_slash = page.lang | append: '/' | prepend: '/' %}
20+
{% assign default_url = page.url | replace: page_lang_slash, '/' %}
21+
{% if lang == "en" %}
22+
<link rel="alternate" hreflang="en" href="{{ site.url }}{{ default_url }}" />
23+
<link rel="alternate" hreflang="x-default" href="{{ site.url }}{{ default_url }}" />
24+
{% else %}
25+
<link rel="alternate" hreflang="{{ lang }}" href="{{ site.url }}/{{ lang }}{{ default_url }}" />
26+
{% endif %}
27+
{% endfor %}
28+
{% endif %}
29+
<style>
30+
article > ul >li {
31+
margin-left: 2em;
32+
list-style: none !important;
33+
}
34+
</style>
35+
</head>
36+
<body>
37+
{%- include header.html -%}
38+
<main class="container" role="main" aria-label="Content">
39+
<article>
40+
<h1>{{page.title}}</h1>
41+
<img src="{{page.event_banner}}" alt="event banner" />
42+
{{ content }}
43+
<h2>Donate & Register</h2>
44+
<div class="grid">
45+
<div>
46+
<h3>Register for the Event!</h3>
47+
<tito-widget event="{{ page.tito_event }}"
48+
prefill="{&quot;name&quot;: &quot;Eve Moneypenny&quot;, &quot;email&quot;: &quot;[email protected]&quot;, &quot;metadata&quot;:{&quot;foo&quot;: &quot;bar&quot;}}"
49+
></tito-widget>
50+
</div>
51+
<div>
52+
<h3>Donate to the Event</h3>
53+
<a data-amounts='25,50,100,250,500,1000' class='commitchange-donate' data-embedded='' data-campaign-id="{{page.commitchange_campaign_id}}" data-designation="{{commitchange_designation}}"></a>
54+
{{ page.registration_embed }}
55+
</div>
56+
</div>
57+
<h2>Our Sponsors</h2>
58+
<h3>Gold Sponsors</h3>
59+
<div class="grid">
60+
{%- for sponsor in page.sponsors_gold -%}
61+
<img src="{{sponsor}}">
62+
{% endfor %}
63+
</div>
64+
65+
<h3>Silver Sponsors</h3>
66+
<div class="grid">
67+
{%- for sponsor in page.sponsors_silver -%}
68+
<img src="{{sponsor}}">
69+
{% endfor %}
70+
</div>
71+
<h3>Bronze Sponsors</h3>
72+
<div class="grid">
73+
{%- for sponsor in page.sponsors_bronze -%}
74+
<img src="{{sponsor}}">
75+
{% endfor %}
76+
</div>
77+
<div class="grid">
78+
<h3>Distinguished Individual Donors ($50 or More)</h3>
79+
<ul>
80+
{%- for sponsor in page.donors -%}
81+
<li>{{sponsor}}"</li>
82+
</ul>
83+
{% endfor %}
84+
</div>
85+
<p>For more information on sponsorship, check out <a href="{{page.prospectus}}">our prospectus</a> or email: <a href="mailto:[email protected]">[email protected]</a></p>
86+
</article>
87+
</main>
88+
{%- include footer.html -%}
89+
<script>
90+
(function() {
91+
if(document.getElementById('commitchange-script')) return;
92+
var npo = 6464;
93+
var script = document.createElement('script');
94+
var first = document.getElementsByTagName('script')[0];
95+
script.setAttribute('data-npo-id', npo);
96+
script.id = 'commitchange-script';
97+
script.src = 'https://us.commitchange.com/js/donate-button.v2.js';
98+
first.parentNode.insertBefore(script, first);
99+
})();
100+
</script>
101+
<script src="https://js.tito.io/v2" async></script>
102+
<script src="{{ '/assets/js/index.js' | relative_url }}"></script>
103+
<script src="https://kit.fontawesome.com/1bbe56de49.js" crossorigin="anonymous"></script>
104+
</body>
105+
</html>
55.6 KB
Loading
Loading

leadership-summit-2024.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
layout: event
3+
lang: en
4+
title: Black Python Devs Leadership Summit
5+
tito_event: black-python-devs/leadership-summit
6+
event_banner: "/assets/images/bpd-summit-card-deck.jpg"
7+
commitchange_campaign_id: 5515
8+
commitchange_designation: Black Python Dev Leadership Summit
9+
sponsors_gold: ["/assets/images/caktus-logo-426x234.deaf567beb3d.png"]
10+
prospectus: https://drive.google.com/file/d/1-YDkO9W6EsmAdy1z8TADak_H6aIdOYsG/view?usp=drive_link
11+
---
12+
13+
We are happy to announce the 2024 Black Python Devs Leadership Summit, held at the Caktus Group in Durham, North Carolina.
14+
15+
This year we're bringing presentation from folks all over the world to energize and inform our Black Python Devs leaders and guests.
16+
17+
## Schedule
18+
19+
### 8:00 - 9:00 am: Registration, Breakfast, and Mingling
20+
21+
### BPD Leadership Track (Morning)
22+
23+
The leadership Track is for BPD Members, Donors, and Distinguished Guests.
24+
25+
- 9:00 - 9:10 am: Welcome and Opening Remarks
26+
- 9:10-9:15: Gold Sponsor Lightning Talk
27+
- 9:20 - 10:05: Chop it Up Session with BPD Leaders
28+
- 10:05 - 10:15: Break
29+
- 10:15 - 11:00: Sponsor Talk
30+
- 11:00 - 1:00 pm: Lunch / Snack Break (BYOL)
31+
32+
### Community Building Track (Afternoon)
33+
34+
Our Community track is available for everyone to join us in.
35+
36+
- 1:15 - 2:00 am: Keynote Address
37+
- 2:05 - 2:55: Interactive Session
38+
- 3:00 - 3:45 pm: Panel Discussion
39+
- 3:50 - 4:00 Breakout Session Prep
40+
- 4:00 - 5:00 pm: Breakout Sessions
41+
- 5:15 - 5:45 Breakout Session Recap
42+
- 5:45 - 6:00: Closing Remarks
43+
- 6:00 - 7:30 **Rooftop Happy Hour** sponsored by: **Caktus Group**

0 commit comments

Comments
 (0)