Skip to content

Commit 5b4f45c

Browse files
committed
added the book data
2 parents 80c3c52 + fbaef59 commit 5b4f45c

File tree

5 files changed

+48
-82
lines changed

5 files changed

+48
-82
lines changed

_articles/es/club.md

Whitespace-only changes.

_includes/footer.html

Lines changed: 5 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,13 @@
11
<footer role="contentinfo">
22
<div class="wrapper">
33
<nav class="social-links">{%- include social.html -%}</nav>
4-
5-
<div class="footer-grid">
6-
<div class="footer-column">
7-
<h4>About</h4>
8-
<ul>
9-
<li><a href="/about/">About BPD</a></li>
10-
<li><a href="/leadership">Leadership</a></li>
11-
<li><a href="/mission">Mission</a></li>
12-
<li><a href="/coc/">Code of Conduct</a></li>
13-
</ul>
14-
</div>
15-
16-
<!-- Support Column -->
17-
<div class="footer-column">
18-
<h4>Support</h4>
19-
<ul>
20-
<li><a href="#">Support</a></li>
21-
</ul>
22-
</div>
23-
24-
<!-- Programs and Events Column -->
25-
<div class="footer-column">
26-
<h4>Programs and Events</h4>
27-
<ul>
28-
<li><a href="/events">Events</a></li>
29-
<li><a href="/meetup">Meetup</a></li>
30-
<li><a href="programs">Programs</a></li>
31-
</ul>
4+
<div class="footer-col-wrapper">
5+
<div class="footer-col">
6+
<a href="/coc/">Code of Conduct</a>
327
</div>
33-
34-
<!-- Community Column -->
35-
<div class="footer-column">
36-
<h4>Community</h4>
37-
<ul>
38-
<li><a href="/community.md">Community</a></li>
39-
<li><a href="#">Social Links</a></li>
40-
</ul>
8+
<div class="footer-col">
9+
<small>&copy; {{ 'now' | date: "%Y" }} {{ site.domain }}</small>
4110
</div>
4211
</div>
43-
44-
<div class="footer-col-wrapper">
45-
<small>&copy; {{ 'now' | date: "%Y" }} {{ site.domain }}</small>
46-
</div>
4712
</div>
4813
</footer>

_layouts/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,5 @@
1313
{%- include latest-posts.html -%}
1414
{%- include join_us.html -%}
1515
{%- include partnerships.html -%}
16-
{%- include club.html -%}
1716
{%- include newsletter_form.html newsletter_title="Learn what the community and its members are doing from our newsletter!" -%}
1817
</div>

assets/css/bpd.css

Lines changed: 0 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -517,44 +517,3 @@ ul.speaking-list {
517517
max-width: 60%;
518518
}
519519
}
520-
521-
.footer-grid {
522-
display: grid;
523-
grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
524-
gap: 20px; /* space between columns */
525-
padding: 20px;
526-
}
527-
528-
.footer-column h4 {
529-
margin-bottom: 10px;
530-
font-size: 16px;
531-
color: #333;
532-
}
533-
534-
.footer-column ul {
535-
list-style: none;
536-
padding: 0;
537-
}
538-
539-
.footer-column ul li {
540-
margin-bottom: 5px;
541-
}
542-
543-
.footer-column ul li a {
544-
text-decoration: none;
545-
color: #666;
546-
}
547-
548-
.footer-column ul li a:hover {
549-
color: #000;
550-
}
551-
552-
.footer-col-wrapper {
553-
text-align: center;
554-
margin-top: 20px;
555-
}
556-
557-
footer small {
558-
font-size: 12px;
559-
color: #999;
560-
}

club.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
layout: default
3+
title: "Club Page"
4+
description: "This is the club page."
5+
---
6+
7+
<section class="book-club">
8+
<h1><strong>Black Python Devs Book Club: A Community of Readers and Learners</strong></h1>
9+
<p>The Black Python Devs book club was born from the community's growing passion for technical reading and learning.</p>
10+
11+
<p>
12+
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
13+
skills, connect with like-minded developers, and contribute to the growth of our community.
14+
</p>
15+
16+
<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>
17+
18+
<h3><strong>Books Completed:</strong></h3>
19+
20+
{% for book in site.data.books %}
21+
<div class="book">
22+
<h2>{{ book.title }}</h2>
23+
<p><strong>Author:</strong> {{ book.author }}</p>
24+
{% if book.cover %}
25+
<img src="{{ book.cover }}" alt="Cover of {{ book.title }}" />
26+
{% endif %}
27+
<p><strong>Summary:</strong> {{ book.summary }}</p>
28+
</div>
29+
{% endfor %}
30+
31+
<h4>Upcoming Books</h4>
32+
<ul>
33+
{% for upcoming in site.data.upcoming_books %}
34+
<li>{{ upcoming.title }} by {{ upcoming.author }} ({{ upcoming.date }})</li>
35+
{% endfor %}
36+
</ul>
37+
38+
<h4>Join Today</h4>
39+
<p>Our Book club meets twice a month on <a href="https://discord.com/invite/XUc3tFqCT3">Discord</a>.</p>
40+
</section>
41+
42+
<hr />
43+
<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>

0 commit comments

Comments
 (0)