Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions BACKLOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Open work on the Crow Intelligence site. Oldest at the bottom of each section. S

## Nice to have

- [ ] `'featured'` is declared on 15 `PROJECTS` entries in `pelicanconf.py` and read by no template — the homepage renders no project cards at all. Either wire it up (a featured strip on the homepage) or drop the key; right now it reads as a live switch that does nothing.
- [ ] Add main-site nav to the featured project microsites (`/site/`, `/dashboard/`, `/web/`, `/analysis/`, `/semantic_explorer/`). Each has its own styling, so this needs per-page integration work, not a single edit.
- [ ] Decide whether the Nagel essay (`/aporia/nagel-essay/`) should carry the main site nav on top of its section-dots nav, or whether the immersive scrolly format is intentional.
- [ ] Tidy `projects/verne/chapters/index.html`: it omits the two skip links and the two font preloads that its sibling `projects/verne/index.html:185-188,199-200` carries, and it holds 16 `data-i18n*` plus 37 `data-chapter` attributes that no script reads (the language ladder was removed — see `i18n.js:9-11`). Inert, but they read as live hooks.
Expand Down
8 changes: 6 additions & 2 deletions pelican/pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,12 @@ def _git_lastmod(source_path):
},
{
'title': 'The Nagel Index — Public vs. Private Personality',
'description': "Big Five personality analysis of political leaders, measuring the gap between their public speeches and private correspondence. Inspired by Thomas Nagel's essay on ruthlessness in public life.",
'url': '/aporia/nagel-essay/',
'description': "Big Five personality analysis of political leaders, measuring the gap between their public speeches and private correspondence. Seven interactive dashboards, one per figure. Inspired by Thomas Nagel's essay on ruthlessness in public life.",
# The dashboards, not the essay — the essay has its own card via APORIA,
# and this one has always carried the Lincoln portrait. Lincoln is also
# what the dashboards index canonicalises to, and every dashboard
# carries the seven-figure picker, so this is the entry point.
'url': '/aporia/nagel-essay/dashboards/lincoln_dashboard.html',
'date': date(2026, 3, 31),
'image': '/dashboard_portraits/lincoln_portrait.png',
'label': 'Personality Analytics',
Expand Down