Conversation
Add a blog section to the Effection website following the same patterns as frontside.com/blog. Features include: - Blog index page at /blog with featured latest post - Individual post pages at /blog/:slug/ - Tag filtering at /blog/tags/:tag - RSS 2.0 feed at /blog/feed.xml - MDX support with frontmatter for post metadata - Author avatars and date display - Dark mode support - Pagefind search integration
commit: |
cowboyd
approved these changes
Feb 3, 2026
Member
cowboyd
left a comment
There was a problem hiding this comment.
Love it! The only real suggestion is to make the xml builder, but other than that LGTM.
Addresses PR feedback to use the XML builder library instead of string templates for safer XML generation.
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.
Motivation
The Effection website currently links to external blog posts on frontside.com. Having a dedicated blog section on the Effection website will allow for:
Approach
This PR adds a blog following the same patterns as frontside.com/blog, adapted to the existing Effection website architecture:
New Routes
/blog- Blog index with featured latest post and grid of all posts/blog/:slug/- Individual post pages with full MDX rendering/blog/tags/:tag- Filter posts by tag/blog/feed.xml- RSS 2.0 feed for syndicationBlog Post Format
Posts live in
/blog/YYYY-MM-DD-slug/index.mdwith YAML frontmatter:Features
Files Added
www/resources/blog.ts- Blog context and MDX processingwww/routes/blog-*.tsx- Route handlerswww/components/blog/author-section.tsx- Author display componentwww/lib/author-config.ts&get-author-image.ts- Author utilitiesblog/2025-02-02-welcome-to-effection-blog/- Sample postFiles Modified
www/main.tsx- Register blog routeswww/components/header.tsx- Add "Blog" nav linkwww/routes/app.html.tsx- Add RSS autodiscoverywww/deno.json- Add remark-frontmatter dependenciesTesting
Run locally with:
Then visit:
Screenshots