Refactor: remove author UI from blog and constrain reading width#23
Conversation
- Make author/authorAvatarLink/authorLink optional in blog schema - Remove author avatar and name from blog listing cards - Remove author sidebar from blog post reading page; show date near title instead - Constrain blog post content to max-w-3xl for comfortable reading - Handle optional author in RSS/Atom feeds and metadata generation - Add .claude/launch.json with dev server configurations Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
echobell-one | bc7e96d | Commit Preview URL Branch Preview URL |
Mar 28 2026, 10:54 AM |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: a6f2cf896c
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| <updated>${updated}</updated> | ||
| <summary>${escape(data.description ?? data.title)}</summary> | ||
| <author><name>${escape(data.author)}</name></author> | ||
| ${data.author ? `<author><name>${escape(data.author)}</name></author>` : ""} |
There was a problem hiding this comment.
Preserve Atom author metadata for authorless posts
This change makes each entry’s <author> conditional, but the feed template still has no feed-level <author> fallback. After author became optional, any post without author will produce an Atom entry with no author metadata, which violates Atom’s required author semantics (author must exist on the entry or be inherited from the feed) and can cause feed readers/validators to reject or drop those entries. Add a feed-level author element or emit a default entry author when data.author is missing.
Useful? React with 👍 / 👎.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Changes
max-w-7xltomax-w-3xlfor better readabilityauthor,authorAvatarLink,authorLink)Impact
Simplifies the blog interface by focusing on content readability while maintaining backward compatibility with optional author metadata in frontmatter.