-
Notifications
You must be signed in to change notification settings - Fork 72
Add media partners and startups tier. #1317
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
Changes from 3 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
655415c
Add media partners
nikoshell ab817b0
Add media partners
nikoshell e1043c2
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] e9931eb
Update src/content/sponsors/cultrepo/index.md
nikoshell 5b15ac1
Update src/content/sponsors/junior-guru/index.md
nikoshell e531d28
Merge branch 'ep2025' into ep2025-issue-1302
nikoshell 083c80b
Add startup tier
nikoshell 42e583a
Update sponsors
nikoshell 4372aec
Update sponsor tier
nikoshell 8e5dde5
Update padding in sponsors pages
nikoshell 164d52c
Update sponsors links
nikoshell 481144b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| --- | ||
| name: CultRepo | ||
| description: "" | ||
| url: https://instagram.com/cult.repo | ||
| socials: | ||
| twitter: https://x.com/CultRepo | ||
| bluesky: https://bsky.app/profile/cultrepo.bsky.social | ||
| youtube: https://www.youtube.com/channel/UCsUalyRg43M8D60mtHe6YcA | ||
| tier: Media Partners | ||
| logo_padding: "0" | ||
| --- | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| --- | ||
| name: Junior Guru | ||
| description: "" | ||
| url: https://logo.junior.guru/ | ||
nikoshell marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| socials: | ||
| youtube: https://www.youtube.com/@juniordotguru | ||
|
|
||
| tier: Media Partners | ||
| logo_padding: 15px | ||
| --- | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| --- | ||
| name: LWN.net | ||
| description: "" | ||
| url: https://LWN.net | ||
| socials: | ||
| twitter: https://x.com/CultRepo | ||
| bluesky: https://bsky.app/profile/cultrepo.bsky.social | ||
| youtube: https://www.youtube.com/channel/UCsUalyRg43M8D60mtHe6YcA | ||
| tier: Media Partners | ||
| logo_padding: "0" | ||
| --- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,5 +15,5 @@ socials: | |
| mastodon: | ||
| bluesky: | ||
| tier: Partners | ||
| logo_padding: 30px 20px | ||
| logo_padding: 35px 20px | ||
| --- | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| --- | ||
| import { getCollection } from "astro:content"; | ||
| import Layout from "@layouts/SectionLayout.astro"; | ||
| import SponsorCard from "@components/SponsorCard.astro"; | ||
| import Headline from "@ui/Headline.astro"; | ||
|
|
||
| const sponsors = (await getCollection("sponsors", ({ data }) => { | ||
| const isProd = import.meta.env.MODE === "production"; | ||
| const notDraft = !isProd || data.draft !== true; | ||
| const isPartner = data.tier === "Media Partners"; | ||
| return notDraft && isPartner; | ||
| })).sort((a, b) => a.id.localeCompare(b.id)); | ||
|
|
||
| --- | ||
|
|
||
| <Layout | ||
| title="EuroPython 2025 | July 14th-20th 2025 | Prague, Czech Republic & Remote" | ||
| description="EuroPython is the largest Python conference in Europe. We are looking forward to seeing you in Prague, Czech Republic & Remote from July 14th-20th 2025." | ||
| > | ||
|
|
||
|
|
||
| <Headline as="h1" id="media-partners" title="Media partners" /> | ||
| <p class="pb-5"> | ||
| EuroPython is a community-driven conference, and we wouldn’t be able to amplify our message and reach as many people without the support of our amazing Media Partners. Learn more about them below (listed in alphabetical order). | ||
| </p> | ||
| {sponsors.length > 0 && ( | ||
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | ||
| {sponsors.map((sponsor) => ( | ||
| <SponsorCard sponsor={sponsor.id} /> | ||
| ))} | ||
| </div> | ||
| )} | ||
| <p class="pb-5"> | ||
| Are you part of a media outlet or platform that shares Python or tech-related content? Interested in partnering with EuroPython? We’d love to hear from you — reach out to us at [email protected]! | ||
| </p></Layout> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.