Skip to content
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

WEB: Update sponsors and fix logos style #61121

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
20 changes: 0 additions & 20 deletions web/pandas/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,16 +146,6 @@ sponsors:
url: https://numfocus.org/
logo: static/img/partners/numfocus.svg
kind: numfocus
- name: "Two Sigma"
url: https://www.twosigma.com/
logo: static/img/partners/two_sigma.svg
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suppose we can remove these assets too from the repo?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are right, I didn't realize. Deleted them now, thank you!

kind: partner
description: "Jeff Reback"
- name: "Voltron Data"
url: https://voltrondata.com/
logo: static/img/partners/voltron_data.svg
kind: partner
description: "Joris Van den Bossche"
- name: "Coiled"
url: https://www.coiled.io
logo: static/img/partners/coiled.svg
Expand All @@ -171,21 +161,11 @@ sponsors:
logo: static/img/partners/nvidia.svg
kind: partner
description: "Matthew Roeschke"
- name: "Intel"
url: https://www.intel.com/
logo: /static/img/partners/intel.svg
kind: partner
description: "Brock Mendel"
- name: "Tidelift"
url: https://tidelift.com
logo: static/img/partners/tidelift.svg
kind: regular
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."
- name: "Chan Zuckerberg Initiative"
url: https://chanzuckerberg.com/
logo: static/img/partners/czi.svg
kind: regular
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."
- name: "Bodo"
url: https://www.bodo.ai/
logo: static/img/partners/bodo.svg
Expand Down
4 changes: 2 additions & 2 deletions web/pandas/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ <h5>With the support of:</h5>
{% for row in sponsors.active | batch(6, "") %}
<div class="row mx-auto h-100">
{% for company in row %}
<div class="col-6 col-md-2">
<div class="col-6 col-md-2 d-flex align-items-center justify-content-center">
{% if company %}
<a href="{{ company.url }}" target="_blank">
<img class="img-fluid img-thumbnail py-5 mx-auto" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
<img class="img-fluid w-100" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
</a>
{% endif %}
</div>
Expand Down
Loading
Loading