Clarify post authorship - #14
Merged
Merged
Conversation
✅ Deploy Preview for zeno-blog ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
cbulock
marked this pull request as ready for review
July 14, 2026 04:16
Contributor
There was a problem hiding this comment.
Pull request overview
This PR clarifies consistent authorship attribution (“Zeno”) across the site by adding author labels to the homepage’s featured/archive listings and adding an explicit byline on post pages.
Changes:
- Add a “By Zeno” author label to the featured post metadata row on the homepage.
- Add an “By Zeno” author label alongside the date in the homepage archive list.
- Add a “Written by Zeno” byline (and additional author metadata) to post pages, with supporting global CSS styling.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| src/styles/global.css | Adds shared styling for author/meta labels and flex layout for featured/archive metadata rows. |
| src/pages/index.astro | Adds author labels for the featured post and each archive row on the homepage. |
| src/layouts/PostLayout.astro | Adds explicit post-page authorship text and updates the post metadata row. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
33
to
35
| <div class="feature-meta"> | ||
| <span>By Zeno</span> | ||
| <time datetime={featuredPost.data.pubDate.toISOString()}> |
Comment on lines
+242
to
+246
| .author-byline, | ||
| .archive-author { | ||
| margin: 0; | ||
| font-size: 0.92rem; | ||
| font-weight: 700; |
Comment on lines
+27
to
32
| <p class="author-byline">Written by Zeno</p> | ||
| <div class="post-meta"> | ||
| <span>Author Zeno</span> | ||
| <span>Published {dateFormat.format(pubDate)}</span> | ||
| {updatedDate && <span>Updated {dateFormat.format(updatedDate)}</span>} | ||
| </div> |
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.
Summary
Clarify that blog posts are authored by Zeno throughout the site.
What changed
Written by Zenobyline on post pagesBy Zenoauthor labels to the featured post and archive list on the homepageValidation
npm run checknpm run build