feat(articles): tag + categorize latest 100 articles, fix tag links#43
Merged
Conversation
Adds a `tags` taxonomy (previously unused) to the 100 most recent articles and backfills `categories` on the 16 that lacked them, drawing only from the existing category vocabulary so siblings match. Categories and tags both feed Hugo's Related content (tags weighted 80, categories 60), so this populates the "Related Articles" block that was empty for uncategorized posts. Also removes a broken article that was a scraped events-calendar dump with no real content, and moves the "About Us" team page out of content/articles/ to content/about/ so it no longer appears in the article feed or related results. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
The single-article template built tag hrefs from the string literal " /tags/" (leading space), so relURL encoded the space and produced /%20/tags/<tag>/ links. Removed the space to match the list template. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
✅ Deploy Preview for powershellorg ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Backfills the same `ICYMI / Community / Weekly Roundup` tags on the 90 older ICYMI roundups outside the latest-100 set, so the full ICYMI archive (146 posts) shares tags and cross-relates. Co-Authored-By: Claude Opus 4.8 <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.
Summary
Adds discoverability metadata to the 100 most recent articles and fixes a broken tag link in the theme.
Content
tagstaxonomy on all 100 latest articles (44 hand-tagged from article content, 56 ICYMI roundups taggedICYMI / Community / Weekly Roundup).categorieson the 16 of those articles that had none, using only the existing site vocabulary (e.g.PowerShell Summit,Tutorials,Announcements) so they match existing siblings..Site.RegularPages.Relatedis driven bytags(weight 80) andcategories(60). Nothing usedtagsbefore, and uncategorized posts produced an empty "Related Articles" block. This populates it.Cleanup
2026-03-24-ask-me-anything-…md, which contained no article content — just a scraped events-calendar dump.content/articles/tocontent/about/so it stops appearing in the article feed and related results.Theme fix
single.htmlbuilt tag links from the literal" /tags/"(leading space), sorelURLproduced/%20/tags/<tag>/. Removed the space to matchlist.html.Validation
hugobuilds clean (exit 0); all 45 tag pages generate./tags/onramp/etc. — no%20.🤖 Generated with Claude Code