Skip to content

Commit 6abb045

Browse files
WEB: Update sponsors and fix logos style
1 parent 8943c97 commit 6abb045

File tree

2 files changed

+2
-22
lines changed

2 files changed

+2
-22
lines changed

web/pandas/config.yml

-20
Original file line numberDiff line numberDiff line change
@@ -146,16 +146,6 @@ sponsors:
146146
url: https://numfocus.org/
147147
logo: static/img/partners/numfocus.svg
148148
kind: numfocus
149-
- name: "Two Sigma"
150-
url: https://www.twosigma.com/
151-
logo: static/img/partners/two_sigma.svg
152-
kind: partner
153-
description: "Jeff Reback"
154-
- name: "Voltron Data"
155-
url: https://voltrondata.com/
156-
logo: static/img/partners/voltron_data.svg
157-
kind: partner
158-
description: "Joris Van den Bossche"
159149
- name: "Coiled"
160150
url: https://www.coiled.io
161151
logo: static/img/partners/coiled.svg
@@ -171,21 +161,11 @@ sponsors:
171161
logo: static/img/partners/nvidia.svg
172162
kind: partner
173163
description: "Matthew Roeschke"
174-
- name: "Intel"
175-
url: https://www.intel.com/
176-
logo: /static/img/partners/intel.svg
177-
kind: partner
178-
description: "Brock Mendel"
179164
- name: "Tidelift"
180165
url: https://tidelift.com
181166
logo: static/img/partners/tidelift.svg
182167
kind: regular
183168
description: "<i>pandas</i> is part of the <a href=\"https://tidelift.com/subscription/pkg/pypi-pandas?utm_source=pypi-pandas&utm_medium=referral&utm_campaign=readme\">Tidelift subscription</a>. You can support pandas by becoming a Tidelift subscriber."
184-
- name: "Chan Zuckerberg Initiative"
185-
url: https://chanzuckerberg.com/
186-
logo: static/img/partners/czi.svg
187-
kind: regular
188-
description: "<i>pandas</i> is funded by the Essential Open Source Software for Science program of the Chan Zuckerberg Initiative. The funding is used for general maintenance, improve extension types, and a efficient string type."
189169
- name: "Bodo"
190170
url: https://www.bodo.ai/
191171
logo: static/img/partners/bodo.svg

web/pandas/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ <h5>With the support of:</h5>
4646
{% for row in sponsors.active | batch(6, "") %}
4747
<div class="row mx-auto h-100">
4848
{% for company in row %}
49-
<div class="col-6 col-md-2">
49+
<div class="col-6 col-md-2 d-flex align-items-center justify-content-center">
5050
{% if company %}
5151
<a href="{{ company.url }}" target="_blank">
52-
<img class="img-fluid img-thumbnail py-5 mx-auto" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
52+
<img class="img-fluid w-100" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
5353
</a>
5454
{% endif %}
5555
</div>

0 commit comments

Comments
 (0)