Updated March 2026
Bake navigation HTML into each page. Since all pages under your subdomain share the same domain, use relative links.
Example navigation: <nav> <a href="/">Home</a> <a href="/about">About</a> <a href="/contact">Contact</a> </nav>
Include this in every page's HTML. When served at your subdomain (e.g. alice.sutrena.com), the links resolve to alice.sutrena.com/, alice.sutrena.com/about, alice.sutrena.com/contact.
Tip: Create a consistent navigation bar and include it in each page. There is no shared layout — each page is a standalone HTML document.
For dynamic navigation, you can fetch the page list from GET /api/pages and generate the nav HTML before deploying.