Add new notes, fix minor issues

This commit is contained in:
2024-10-02 22:47:34 -04:00
parent 6e9a488e5b
commit 910f531207
10 changed files with 121 additions and 9 deletions

View File

@@ -28,7 +28,7 @@ function Title() {
let currRoot: SiteSubPages = SiteMap.subpages;
let title: string | null = null;
if (pagePath !== '/') {
const subPaths = pagePath.split('/');
const subPaths = pagePath.split('?')[0].split('#')[0].split('/');
for (const p of subPaths.slice(1, subPaths.length)) {
splitPath.push({ name: currRoot[p].title, path: p });