Skip to content

add CSS padding to speakers list #400

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 6 commits into from
Sep 1, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
26 changes: 15 additions & 11 deletions _includes/conferences.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
{% if site.data.conferences.size > 0 %}
{% for conference in site.data.conferences %}
<div class="conference">
<h2>
<a href="{{ conference.url }}">{{ conference.name }}</a> ({{ conference.dates }}) {% if conference.location != "_No response_" %}- {{ conference.location }}{% endif %}
</h2>
<p>Type: {{ conference.type }}</p>
{% if conference.summary != "_No response_" %}
{{ conference.summary | markdownify }}
{% endif %}
{% if conference.speaking != "_No response_" %}
<h3>Speaking:</h3>
{{ conference.speaking | markdownify }}
{% endif %}
<article>
<h2>
<a href="{{ conference.url }}">{{ conference.name }}</a> ({{ conference.dates }}) {% if conference.location != "_No response_" %}- {{ conference.location }}{% endif %}
</h2>
<p>Type: {{ conference.type }}</p>
{% if conference.summary != "_No response_" %}
{{ conference.summary | markdownify }}
{% endif %}
{% if conference.speaking != "_No response_" %}
<h3>Speaking:</h3>
<li>
{{ conference.speaking | markdownify }}
</li>
{% endif %}
</article>
</div>
{% endfor %}
{% else %}
Expand Down
10 changes: 7 additions & 3 deletions about.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@ Our goal is to become the largest community of Black Python Developers in the wo

We aim to:

- Establish guidance, mentorship, and career support for Black Pythonistas around the world.
- Create opportunities for the Python community to invest in local communities of Black Python Devs members
- Increase participation of Black Python Devs members in existing Python community programs, events, and initiatives.
<div>
<article class="markdown-list">
<li>Establish guidance, mentorship, and career support for Black Pythonistas around the world.</li>
<li>Create opportunities for the Python community to invest in local communities of Black Python Devs members.</li>
<li>Increase participation of Black Python Devs members in existing Python community programs, events, and initiatives.</li>
</article>
</div>

## Initiatives

Expand Down
22 changes: 22 additions & 0 deletions assets/css/bpd.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,24 @@ article.post-list a {
color: #007b95;
}

article li {
padding-left: 2rem;
}

/* prevent ::marker from being displayed in DOM */
li {
list-style: none;
}

/* style the markdown files */
.markdown-list {
padding-left: 2rem;
}

.markdown-list li {
list-style: disc;
}

article.pico-background-pumpkin-650 a.contrast,
article.pico-background-pumpkin-800 a.contrast,
article.pico-background-zinc-800 a.contrast {
Expand Down Expand Up @@ -459,3 +477,7 @@ img.donation-photo {
img.featured-image {
max-height: 20rem;
}

ul.speaking-list {
padding-left: 2rem;
}
10 changes: 6 additions & 4 deletions community.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ Contact us via email at [[email protected]](mailto:contact@blackpython

There are many ways to get involved with the Black Python Devs Community:

- Participate in discussions on Discord.
- Share your projects and get feedback.
- Contribute to our community projects.
- Attend our virtual meetups and events.
<article class="markdown-list">
<li>Participate in discussions on Discord.</li>
<li>Share your projects and get feedback.</li>
<li>Contribute to our community projects.</li>
<li>Attend our virtual meetups and events.</li>
</article>

We're excited to see what we can achieve together in this community. Let's code, learn, and grow together!
20 changes: 13 additions & 7 deletions initiatives.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ They raise the overall capability of Pythonistas in their area with much more co

### Our Strategy

- Sponsor Local Conferences/Meetups organized by Black Python Devs Community Leaders
- Sponsorships go towards tickets for local community members to attend
<article class="markdown-list">
<li>Sponsor Local Conferences/Meetups organized by Black Python Devs Community Leaders</li>
<li>Sponsorships go towards tickets for local community members to attend</li>
</article>

## Black Leadership Opportunity Fund

Expand All @@ -27,9 +29,11 @@ Lastly the process for getting visas to attend can be confusing and daunting and

### Our Strategy

- Offer a limited grant to community leaders to cover expenses around visa appointments.
- Work with travel professionals to coordinate flights, hotels, and transportation while travelling
- Work with conferences to make their opportunity grants accessible to as many as possible addressing the concerns of our community leaders.
<article class="markdown-list">
<li>Offer a limited grant to community leaders to cover expenses around visa appointments.</li>
<li>Work with travel professionals to coordinate flights, hotels, and transportation while travelling.</li>
<li>Work with conferences to make their opportunity grants accessible to as many as possible addressing the concerns of our community leaders.</li>
</article>

## Build Black Excellence Equally

Expand All @@ -39,7 +43,9 @@ Black Python Devs will work with content creators to give as many opportunities

### Our Strategy

- Partner with content creators for bulk discounts on learning content
- Host regular events and programs in our Discord for folks to skill up, network, and learn from one another
<article class="markdown-list">
<li>Partner with content creators for bulk discounts on learning content.</li>
<li>Host regular events and programs in our Discord for folks to skill up, network, and learn from one another.</li>
</article>

[Learn more about Black Python Devs](/about)
Loading