Skip to content
Merged
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions club.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
layout: default
title: "Club Page"
description: "This is the club page."
---

<section class="book-club">
<h1><strong>Black Python Devs Book Club: A Community of Readers and Learners</strong></h1>
<p>The Black Python Devs book club was born from the community's growing passion for technical reading and learning.</p>

<p>
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.
</p>

<p>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.</p>

<h3><strong>Books Completed:</strong></h3>

{% for book in site.data.books %}
<div class="book">
<h2>{{ book.title }}</h2>
<p><strong>Author:</strong> {{ book.author }}</p>
{% if book.cover %}
<img src="{{ book.cover }}" alt="Cover of {{ book.title }}" />
{% endif %}
<p><strong>Summary:</strong> {{ book.summary }}</p>
</div>
{% endfor %}

<h4>Upcoming Books</h4>
<ul>
{% for upcoming in site.data.upcoming_books %}
<li>{{ upcoming.title }} by {{ upcoming.author }} ({{ upcoming.date }})</li>
{% endfor %}
</ul>

<h4>Join Today</h4>
<p>Our Book club meets twice a month on <a href="https://discord.com/invite/XUc3tFqCT3">Discord</a>.</p>
</section>
{% else %}
<p><strong>No books found</strong></p>

<hr />
<p>Have a book suggestion? <a href="https://github.com/BlackPythonDevs/blackpythondevs.github.io/issues/new?assignees=&labels=book&projects=&template=add_book.yml&title=%5BBOOK%5D+%3CBOOK+TITLE%3E+BY+AUTHOR">Submit a Suggestion</a></p>
Loading