fix(reader): use proper templ expression for back link href and clean up formatting

The back link in ReaderChrome used literal curly braces inside the href
attribute string (href="/media-items/{ metadata.MediaItemID }") which
doesn't interpolate the variable in templ. Changed to use the correct
templ expression syntax: href={ "/media/" + metadata.MediaItemID }.

Also fixed minor formatting issues:
- Normalize whitespace in comment after closing div
- Collapse empty navigator-viewport div to single line
This commit is contained in:
2026-04-23 17:01:01 -04:00
parent 72c8ba7a4f
commit 5cdae6cc4b
2 changed files with 68 additions and 56 deletions
File diff suppressed because one or more lines are too long