Skip to content

Modified the club page #487

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Sep 30, 2024
Merged
Changes from 12 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
47 changes: 47 additions & 0 deletions club.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
layout: default
title: "Club Page"
description: "This is the club page."
---

{% if site.data.books.size > 0 %}
<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>
{% endif %}

<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>