Redesign site on Hugo Blox documentation template#1
Merged
Conversation
Replaces the Ananke-based site with a Hugo Blox / Tailwind v4 stack.
The homepage now mirrors the slideshow's narrative arc: pitch hero,
quick stats, the problem we solve, what we are not, five principles,
a standards-alignment comparison table, and a closing CTA.
Pages:
/ pitch hero + deck-flow scroll
/spec/ signed-section element, attributes, two-stage
canonicalization (HTML→text + 8-phase text), key
resolution, endorsements, two-layer trust model
/architecture/ five mermaid diagrams: full system, two layers,
author flow, reader flow, domain binding
/implementation/ reference impls, code samples, status table,
open design questions
/use-cases/ ported and tightened
/faq/ ported and tightened
/blog/paper-published/ paper announcement, credited to Jason
Theme customizations:
- data/authors/jason.yaml — owner profile w/ external_url to
jason-grey.com; byline links externally via overridden
layouts/_partials/page_author_card.html
- assets/js/hb-mermaid-config.js — overrides Blox's default
mermaid config (which broke against Tailwind v4 oklch colors)
with static dark-friendly palette matching the deck
- config/_default/params.yaml — HTMLTrust branding, dark mode
default, teal primary, organization identity, footer credit
Build chain:
- .gitignore: add node_modules and hugo_stats.json
- CI: add Setup Go + Setup Node + npm install; build search
index with pagefind; skip signed-section verification until
signing is re-wired into the Hugo Blox build (TODO marker
left in workflow)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
5d1a3bf to
d412d7e
Compare
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
Rebuilds the site on Hugo Blox / Tailwind v4, mirroring the slideshow's narrative arc. The Ananke theme and its custom partials are replaced.
<signed-section>element, two-stage canonicalization (HTML→text + 8-phase text), key resolution, endorsements, two-layer trust modelTheme customizations
data/authors/jason.yaml— owner profile w/external_urlto jason-grey.comlayouts/_partials/page_author_card.html— overrides the Blox byline to honorexternal_urlassets/js/hb-mermaid-config.js— overrides Blox's default mermaid config (which broke against Tailwind v4 oklch colors) with a static dark-friendly palette matching the deckconfig/_default/params.yaml— HTMLTrust branding, dark mode default, teal primary, organization identityBuild chain changes
.gitignore— addnode_modules,hugo_stats.json.github/workflows/ci.yml— add Setup Go + Setup Node +npm install; build search index with pagefind; skip the signed-section verification for now (the new Hugo Blox build does not yet apply<signed-section>wrappers — TODO marker left in the workflow to re-wire signing later)Test plan
<signed-section>signing into the Hugo Blox build🤖 Generated with Claude Code