-
Notifications
You must be signed in to change notification settings - Fork 0
Re-design the sponsors page #118
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
Open
mrbiggred
wants to merge
36
commits into
main
Choose a base branch
from
feature/sponsor-page
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
59d4c19
Created plan for updating the sponsors page
mrbiggred f6dc59c
Merge branch 'main' into feature/sponsor-page
mrbiggred 9044ae4
Update AGENTS.md to include Docker Compose usage instructions for con…
mrbiggred 4c87cc7
Refine sponsors page implementation plan: clarify YAML structure, con…
mrbiggred a83db1b
Add mkdocs-macros-plugin for YAML inclusion and update requirements
mrbiggred 11640f1
Updated to sponsors page plan to prevent duplicating sponsor info.
mrbiggred 75a3237
Created sponsor data yml file.
mrbiggred 1ff86bc
Refactor sponsors page to load the sponsors from the yml data.
mrbiggred 6125981
Removed corporate and individual sections from the sponsor page.
mrbiggred 9435b06
WIP: Updated the sponsor page layout.
mrbiggred 06f0e47
Moved sponsor css to it's own file.
mrbiggred 2513914
Update sponsor page layout and styles
mrbiggred b6987c1
Fixed gap above and below lead text.
mrbiggred 48f1c0b
Simplify the sponsors css
mrbiggred 9d59e81
Tweaking the sponsorship page content and buttons.
mrbiggred cbd1780
Refactor sponsor descriptions and remove test entries.
mrbiggred 37a838d
Remove implementation plan for sponsors and donors page
mrbiggred b3441e0
Add documentation for updating sponsors and project structure
mrbiggred fc17b7c
Fixed typos in the copy on the sponsors page.
mrbiggred 515fbd6
Remove broken WARNING fallback for unknown sponsor IDs
mrbiggred 619c611
Remove unused Stripe buy button script from sponsors page
mrbiggred fe774c6
WIP: Trying dialog for more sponsor info
mrbiggred 5616967
WIP: Updating the sponsor boxes responsiveness.
mrbiggred 0a75a6b
Tweaking the sponsor boxes such as putting the title at the bottom.
mrbiggred 6fcd3ac
Remove chris-cumming from the 2026 sponsors list
mrbiggred 0effd0e
Remove dead .card-back-* CSS rules and fix misleading comment; the ba…
mrbiggred 4f734ef
Fix Docker Compose service name in AGENTS.md — use `app` instead of n…
mrbiggred 2b41fd7
Add keyboard (Enter/Space) handler to sponsor cards — PR #118 review …
mrbiggred 7616436
Fix sponsor count to use only valid IDs — PR #118 review feedback
mrbiggred e80610b
Guard sponsor name placeholder against missing/empty name — PR #118 r…
mrbiggred 70ddb4e
Moved sponsor images to the assets folder.
mrbiggred 45f2d7c
Renamed sponsor images.
mrbiggred 8507a28
Merge branch 'main' into feature/sponsor-page
mrbiggred 892be30
Merge branch 'main' into feature/sponsor-page
mrbiggred 9f17b50
Updated documentation for the sponsorship changes.
mrbiggred 4fa3a3c
Changed sponsor images to webp.
mrbiggred 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
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,73 @@ | ||
| # Sponsors & Donors data for Weekly Dev Chat | ||
| # | ||
| # Sponsor details are defined once under `sponsors:` and referenced by ID | ||
| # in each year under `years:`. This avoids duplicating a sponsor's record | ||
| # when they return across multiple years — update their info in one place. | ||
| # | ||
| # Sponsor fields: | ||
| # name (required) Display name. | ||
| # image (optional) Filename in docs/sponsors/. | ||
| # tier (optional) Short label shown on the card (e.g. "Primary Sponsor"). | ||
| # description (optional) Short thank-you or description line. | ||
| # links (optional) List of { label, url } pairs shown on the card back. | ||
| # link (optional, legacy) Single URL — used only if `links` is not set. | ||
| # link_label (optional, legacy) Label for the legacy single `link`. | ||
| # | ||
| # Consent policy: only list individual donors by name with their explicit | ||
| # opt-in consent. When in doubt, leave them out or use "Anonymous". | ||
| # | ||
| # Example (commented out — copy, uncomment, and edit when adding a sponsor): | ||
| # | ||
| # sponsors: | ||
| # example-org: | ||
| # name: Example Org | ||
| # image: example.png | ||
| # tier: Community Partner | ||
| # description: Thanks to Example Org for supporting the community. | ||
| # links: | ||
| # - label: Website | ||
| # url: https://example.com/ | ||
|
|
||
| sponsors: | ||
| saturday-mp: | ||
| name: Saturday Morning Productions | ||
| image: saturday-morning-productions.jpeg | ||
| tier: Primary Sponsor | ||
| description: Main financial sponsor. | ||
| links: | ||
| - label: Website | ||
| url: https://saturdaymp.com/ | ||
| - label: GitHub Sponsors | ||
| url: https://github.com/sponsors/saturdaymp | ||
|
|
||
| dev-edmonton: | ||
| name: Dev Edmonton Society | ||
| image: dev-edmonton.png | ||
| tier: Community Partner | ||
| description: Slack workspace and other promotional support. | ||
| links: | ||
| - label: Website | ||
| url: https://devedmonton.com/ | ||
|
|
||
| edmonton-unlimited: | ||
| name: Edmonton Unlimited | ||
| image: edmonton-unlimited.jpeg | ||
| tier: Community Partner | ||
| description: Meetup group and other promotional support. | ||
|
|
||
| links: | ||
| - label: Website | ||
| url: https://edmontonunlimited.com/ | ||
| - label: Meetup | ||
| url: https://www.meetup.com/Edmonton-Unlimited/ | ||
|
|
||
| years: | ||
| 2026: | ||
| - saturday-mp | ||
| - dev-edmonton | ||
| - edmonton-unlimited | ||
|
|
||
| 2025: | ||
| - saturday-mp | ||
| - dev-edmonton | ||
| - edmonton-unlimited |
File renamed without changes
File renamed without changes
File renamed without changes
Binary file not shown.
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
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
Binary file not shown.
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
Oops, something went wrong.
Oops, something went wrong.
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.