Some nav fixes

2f0cb46f900a8008f78a2efe3b2fd932627aea28

Tucker McKnight | Fri Jan 02 2026

Some nav fixes

- Remove the Tags link from the nav. I don't have anything
  to put there yet.
- Fix the "active" status on the commit page.
- Rename "patches" to "commits" in the URL.
js_templates/common/htmlPage.ts:123
Before
123
124
125
                    <li class="nav-item">
                      <a class="nav-link" href="#">Tags</a>
                    </li>
After
123
124
125
main.ts:279
Before
279
        return `${reposPath}/${eleventyConfig.getFilter("slugify")(repoName)}/branches/${eleventyConfig.getFilter("slugify")(branchName)}/list/`
After
279
        return `${reposPath}/${eleventyConfig.getFilter("slugify")(repoName)}/branches/${eleventyConfig.getFilter("slugify")(branchName)}/branches/`
main.ts:447
Before
447
          path: 'patches/page1',
After
447
          path: 'commits/page1',
main.ts:458
Before
458
      navTab: "patches",
After
458
      navTab: "commits",