diff --git a/_articles/ha/events.md b/_articles/ha/events.md new file mode 100644 index 0000000..06bfc28 --- /dev/null +++ b/_articles/ha/events.md @@ -0,0 +1,39 @@ +--- +layout: default +lang: en +title: Events +--- + +# Black Python Devs Events + +## Coffee and Code + +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, from beginners to experts. + +We’ll be discussing the latest trends in Python development, 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! + +# Upcoming Conferences + +Black Python Devs aims to partner with Python conferences around the world to increase the visibility and opportunities for Black leadership in the Python community. We understand that when you put qualified individuals on stage and at conferences it increases their value and opportunities for employment. + + + +Here are some highlighted upcoming conferences where you can find Black Python Developers involved on stage or behind the scenes + +{% include conferences.html %} diff --git a/tests/test.py b/tests/test.py index b31a506..819a3ec 100644 --- a/tests/test.py +++ b/tests/test.py @@ -10,7 +10,6 @@ routes = [ ("about"), ("community"), - ("conferences"), ("events"), ] @@ -41,7 +40,6 @@ def test_destination( ("Inicio", "/es/"), ("Eventos", "/es/events/"), ("Comunidad", "/es/community/"), - ("Conferencias", "/es/conferences/"), ), ) def test_headers_in_language(page: Page, title: str, url: str) -> None: @@ -70,7 +68,6 @@ def test_switching_lang_es_about(page: Page) -> None: ("Nyumbani", "/sw/"), ("Matukio", "/sw/events/"), ("Jumuiya", "/sw/community/"), - ("Mikutano", "/sw/conferences/"), ), ) def test_headers_in_sw(page: Page, title: str, url: str) -> None: @@ -99,7 +96,6 @@ def test_switching_lang_sw_about(page: Page) -> None: ("Black Python Devs | Blog", "/blog"), ("Black Python Devs | About Us", "/about/"), ("Black Python Devs | Events", "/events/"), - ("Black Python Devs | Conferences", "/conferences/"), ("Black Python Devs | Community", "/community/"), ), )