Conversation
- Landing page: GitHub README-style profile header with avatar, bio, social links, readme section with stats, featured latest post, and recent posts grid - Blog post page: Hashnode-style layout with reading time estimate, tags above title, author meta bar, hero image, author card at bottom, and tag links - Writing page: added client-side tag filter bar with URL param support (?tag=kubernetes), post count display - Content schema: added optional tags field to posts collection - All 4 posts: tagged with relevant topics (kubernetes, gitops, k3s, fluxcd, docker, devops, gaming, web, email, etc.) - CSS: new components for profile header, readme section, featured card, tag pills, tag filter bar, author card, reading time meta https://claude.ai/code/session_01HSKQgRDxyFMuqBsH6PmT9c
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
This PR significantly redesigns the landing page and post pages to match a modern, Hashnode-style layout. It introduces a profile header section, featured post showcase, tag-based filtering on the writing page, and enhanced post metadata displays. The changes include comprehensive CSS additions for new components and updated page templates to leverage them.
Key Changes
Landing Page (
src/pages/index.astro)Writing Page (
src/pages/writing/index.astro)?tag=tagname)Post Detail Page (
src/pages/writing/[slug].astro)Styling (
src/styles/global.css).profile-header,.profile-avatar,.profile-name,.profile-bio,.profile-links.readme-sectionwith header and body styling.featured-cardwith image wrapper and content layout.tag,.tag-filter,.tag-filter-barfor tag UI.post-meta-bar,.author-avatar,.author-cardfor post metadata.section-header,.section-labelfor section organization.card .metato support flexbox layout for tagsContent Configuration (
src/content/config.ts)tagsfield to post frontmatter schema (array of strings)Post Frontmatter Updates
tagsfield to existing posts for categorizationImplementation Details
history.replaceState()https://claude.ai/code/session_01HSKQgRDxyFMuqBsH6PmT9c