Convert homepage to Express EJS

This commit is contained in:
Zebratic
2026-07-07 17:48:59 +00:00
parent 14cd966bec
commit fac38efdee
16 changed files with 1634 additions and 26 deletions
+17
View File
@@ -0,0 +1,17 @@
<header class="topbar">
<a class="brand" href="/" aria-label="bonzi home">
<span class="mark" aria-hidden="true">☤</span>
<span class="wordmark">bonzi</span>
<span class="role-tag">agent</span>
</a>
<nav class="nav nav-desktop" aria-label="primary">
<% navLinks.forEach((link) => { %>
<a href="<%= link.href %>"><%= link.label %></a>
<% }) %>
</nav>
<nav class="nav-mobile" aria-label="mobile primary">
<% mobileLinks.forEach((link) => { %>
<a href="<%= link.href %>" aria-label="<%= link.label %>"><%= link.short || link.label %></a>
<% }) %>
</nav>
</header>