Add new notes, fix minor issues

This commit is contained in:
2024-10-02 22:47:34 -04:00
parent ccdd2bd307
commit b442413e32
10 changed files with 121 additions and 9 deletions
+3 -3
View File
@@ -8,14 +8,14 @@ function traverseMap(head: Site, cwd = '', depth = 0) {
return [];
let elements = [];
for (const [slug, info] of Object.entries(head.subpages)) {
if (slug === 'sitemap')
continue;
const path = `${cwd}/${slug}`;
const children = (<><dl style={{marginLeft: '3rem'}}> {traverseMap(info, path, depth + 1)}</dl></>);
elements.push(<>
<>
<dt>{info.title}</dt>
<dd><Link href={path}>{path}</Link></dd>
<dd><Link href={path}>paulw.xyz{path}</Link></dd>
{children}
</>
</>);
}
return elements;