Skip to content
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
6 changes: 4 additions & 2 deletions _data/foundational_supporters.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{
"2025": [
"Aman Singh",
"Nyah Macklin",
"Ned Batchelder",
"Tim Schilling",
"Jannis Leidel",
"Angela Andrews",
"Vance Arocho",
"jonathan banafato",
"Jonathan Banafato",
"Jeremy Carbaugh",
"Mike Fiedler",
"Savannah Bailey",
"Seth Larson",
"Peter Pinch",
"Carol Willing",
"Tim Schilling",
"Thomas Wouters",
"Hugh Dyar",
"Melanie Arbor",
"Joseph Bannerman",
Expand Down
42 changes: 23 additions & 19 deletions _layouts/_includes/foundational_supporters.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,28 @@ <h2>Foundational Supporters</h2>
<p>Black Python Devs operates primarily on support from individuals. It is those supporters that serve as the foundation for what we do.</p>
<p>We would like to recognize our supporters who donate at least $200 each year.</p>

{% for data_year in data %}
<details name="{{data_year}}" {% if data_year="" ="year" %}open{% endif %}>
<summary>{{data_year}}</summary>
<div class="grid">
{% for data_lists in data[data_year] | sort | slice(3) %}
<section class="">
<div>
<ul>
{% for supporter in data_lists %}
<li>{{supporter}}</li>
{% endfor %}
</ul>
</div>
</section>
{% endfor %}
</div>
{% for data_year in data %} {% if data_year == year %}
<details name="{{data_year}}" open>
{% else %}
<details name="{{data_year}}">
{% endif %}
<summary>{{data_year}}</summary>
<div class="grid">
{% for data_lists in data[data_year] | sort | slice(3) %}
<section class="">
<div>
<ul>
{% for supporter in data_lists %}
<li>{{supporter}}</li>
{% endfor %}
</ul>
</div>
</section>
{% endfor %}
</div>
</details>
{% endfor %}
<p>You can view the archive of supporters<sup>*</sup> by year at https://github.com/blackpythondevs/blackpythondevs.</p>
<p>* <sub>Those who marked their desire to remain anonymous have not been included</sub></p>
</details>
{% endfor %}
<p>You can view the archive of supporters<sup>*</sup> by year at https://github.com/blackpythondevs/blackpythondevs.</p>
<p>* <sub>Those who marked their desire to remain anonymous have not been included</sub></p>
</section>
Loading