Add a grouped videos page for recent past conferences#899
Merged
Conversation
Copilot
AI
changed the title
[WIP] Add page for displaying past event videos
Add a grouped videos page for recent past conferences
May 27, 2026
ckenst
approved these changes
May 27, 2026
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.
Pull Request Template: Add a Conference or Workshop
Thank you for contributing! Most PRs are to add a new conference or workshop. The following are to help ensure you've added everything correctly:
Conference/Workshop Details
Checklist
_data/current.ymlor_data/past.yml):or;or'), the name must be in quotes (")Additional context
Adds a dedicated
/videos/page for past conferences with event recordings. The page pulls from_data/past.yml, shows only entries withvideo_url, limits the list to the 10 most recent entries, and groups them by year to support future expansion of the pattern.Page
videos.htmlas a standalone Jekyll page rather than a postData selection
site.data.pastto conferences withvideo_urlpast.ymlordering as the source of recencyPresentation
2024,2023,2021, etc.)Navigation
Videosto the sub-navigation for discoverability{% assign video_conferences = site.data.past | where_exp: "conference", "conference.video_url" %} {% for conference in video_conferences limit: 10 %} {% assign conference_year = conference.dates | split: ", " | last %} {% endfor %}