diff --git a/_data/books.json b/_data/books.json new file mode 100644 index 0000000..a62d7c9 --- /dev/null +++ b/_data/books.json @@ -0,0 +1,14 @@ +[ + { + "title": "Boost Your Django DX", + "author": "Adam Johnson", + "url": "https://adamchainz.gumroad.com/l/byddx", + "reviews": [ + { + "title": "Review: Boost Your Django DX by Adam Johnson", + "author": "Velda Kiara", + "url": "https://dev.to/veldakiara/review-boost-your-django-dx-by-adam-johnson-9ho" + } + ] + } +] diff --git a/book-club.html b/book-club.html new file mode 100644 index 0000000..616cb32 --- /dev/null +++ b/book-club.html @@ -0,0 +1,50 @@ +--- +layout: default +title: "Book Club Page" +description: "This is the book club page" +--- + +
+

Black Python Devs Book Club: A Community of Readers and Learners

+

The Black Python Devs book club was born from the community's growing passion for technical reading and learning.

+ +

+ Our goal is to create a welcoming and supportive space where members can share their love of Python development, discuss industry trends, and dive deeper into technical concepts. By reading and discussing books together, we hope to sharpen our + skills, connect with like-minded developers, and contribute to the growth of our community. +

+ +

The club's leadership is dedicated to building a vibrant and engaging community for everyone. Our initiative aligns with BPD's overall mission to increase participation, empower our members, and provide opportunities for professional growth.

+ +

Books Completed:

+ + {% for book in site.data.books %} +
+

{{ book.title }}

+

Author: {{ book.author }}

+ +

Reviews

+ {% if book.reviews %} + + {% else %} +

No reviews available.

+ {% endif %} +
+ {% endfor %} + +

Upcoming Books

+ + +

Join Today

+

Our Book club meets twice a month on Discord.

+
+ +
+

Have a book suggestion? Submit a Suggestion

diff --git a/tests/conftest.py b/tests/conftest.py index 70f95bb..09a5862 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -18,6 +18,7 @@ def url_port() -> tuple[str, int]: "events", "community", "leadership", + "book-club", ]