Fix talk entry layout - #3
Merged
Merged
Conversation
The two-column grid put the event label at the far right of a full-width row while the abstract stopped at 68ch, so each talk read as three disconnected fragments separated by a dead gutter. The slides link also sat 6px under the last line of prose, reading as part of the paragraph. Each entry is now title, event byline, abstract, then links, held to one reading measure. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
Reported against the live site: the talks section looked wrong.
What was wrong
Each talk was a two-column grid — title left, event label right — with the abstract spanning both columns but capped at a 68ch reading measure. Since the row was full width and the prose was not, the event label ended up far to the right of where the text stopped, leaving a dead gutter. Each entry read as three disconnected fragments rather than one record.
The slides link also sat 6px below the last line of the abstract, close enough to read as part of the paragraph rather than as a link.
Confirmed it was a design problem and not a deployment one first: the live
index.htmlwas byte-identical to the local build.What changed
CSS only. Each entry is now a single column held to one reading measure:
Also removed the now-dead mobile overrides that only existed to collapse the grid.
Verification
python -m tools.generate --checkexits 0🤖 Generated with Claude Code