From 28a0ba02a38d2b276c5b3f8cc9150f92a7e9d29d Mon Sep 17 00:00:00 2001 From: timosahenru Date: Wed, 18 Sep 2024 08:09:19 +0000 Subject: [PATCH 1/2] Event page added --- _articles/ha/events.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 _articles/ha/events.md 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 %} From 7a8d8192c994263cf7d88668ddc6da55419ae2a8 Mon Sep 17 00:00:00 2001 From: timosahenru Date: Wed, 18 Sep 2024 08:31:00 +0000 Subject: [PATCH 2/2] Fixed failing tests --- tests/test.py | 4 ---- 1 file changed, 4 deletions(-) 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/"), ), )