Skip to content

Commit db08abd

Browse files
committed
fix partnerships
1 parent 5b6b17a commit db08abd

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<section>
2+
<h2>Partnerships</h2>
3+
<p>Black Python Devs has partnered with the following organizations to offer discounts and benefits to our community.</p>
4+
<div class="grid">
5+
{% for partner in partnerships %}
6+
<article>
7+
<header>
8+
<a href="{{partner.url}}">
9+
<img src="{{partner.logo}}" alt="{{partner.name}} logo" style="max-height: 80px; object-fit: contain;">
10+
</a>
11+
</header>
12+
<h3><a href="{{partner.url}}">{{partner.name}}</a></h3>
13+
<p>{{partner.description}}</p>
14+
</article>
15+
{% endfor %}
16+
</div>
17+
</section>

_layouts/partnerships.html

Whitespace-only changes.

_layouts/support.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
{% block content %}
44
{{content}}
55
{% include "_includes/support_widget.html" %}
6+
{% include "_includes/partnerships.html" %}
67
{% include "_includes/foundational_supporters.html" %}
78
{% include "_includes/pitch_deck.html" %}
89
{% endblock %}

0 commit comments

Comments
 (0)