Combine Newsroom and Awards into a single filterable page#18721
Open
dwahbe wants to merge 1 commit intopulumi:masterfrom
Open
Combine Newsroom and Awards into a single filterable page#18721dwahbe wants to merge 1 commit intopulumi:masterfrom
dwahbe wants to merge 1 commit intopulumi:masterfrom
Conversation
Consolidates /about/newsroom/ and /awards/ into one Newsroom page with All / News / Press / Awards filter tabs, featured cards, and a paginated archive list. /awards/ aliases to the new URL so existing inbound links keep working. Addresses pulumi#18717. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
|
Hello again @dwahbe! 👋🏻 Thanks for this submission as well! I generally like this idea, but there's a bunch here to consider, so I'll need to discuss it with the team. We may also want to provide you with some additional guidance to align more closely with the visual updates we've been making across the site lately. Will keep you posted! |
Author
|
Sounds great! Let me know :) |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Addresses #18717, feel free to ignore if not the right direction.
Proposed changes
This PR consolidates the existing Newsroom (
/about/newsroom/) and Awards (/awards/) pages into a single Newsroom at/about/newsroom/, with filter tabs for News, Press, and Awards. The Awards URL aliases to the new page so external links and search rankings carry over.A unified Newsroom page
Card design
Content and routing
content/about/newsroom.mdbecomes the unified page;content/awards/_index.mdis removed and/awards/aliases to the new URL.data/awards.tomlgets adatefield on each entry (sourced from the original publication or announcement date) so awards sort chronologically alongside press and news./about/) keeps a compact "In the Newsroom" preview using the same card partial, with one item from each category.Implementation notes
layouts/page/newsroom.htmlwith four small partials inlayouts/partials/newsroom/:card.html— the featured-card layoutarchive-row.html— the compact archive rowtype-meta.html— single source of truth for type → label / badge color / track-name mappingsort-key.html— parses the human-readable dates from the data files into a sortable `YYYY-MM-DD` keytheme/src/ts/newsroom.ts. Uses the existing `analytics.track()` pattern (see `llm-menu.tsx`, `hubspot-form.tsx`) to fire `newsroom-filter` and `newsroom-load-more` events. Existing per-link `data-track` attributes carry over.