1<!-- index.html — zero JavaScript required -->2<nav>3 <page-link path="/" title="Home">Home</page-link>4 <page-link path="/todos" title="Todos">Todos</page-link>5 <page-link path="/contact" title="Contact">Contact</page-link>6</nav>7 8<page-route path="/">9 <h1>Welcome</h1>10</page-route>11 12<!-- lazy-load HTML, txt or JS files -->13<page-route path="/todos" src="./pages/todos.html"></page-route>14<page-route path="/contact" src="./pages/contact.js"></page-route>15 16<!-- redirect unknown paths -->17<page-redirect path="/404"></page-redirect>