clean exemple/navigation to a minimal working example

- index.html: fix title and typo, add missing #error div
- config.json: replace project-specific keys with generic api_url
- core/menu.js: remove Voltalis mock data, leave commented usage pattern
- dashboard.js: move logic to init(), Custom Element is a plain shell
- dashboard.css: add real styles, remove placeholder comment
- manifest.json: drop unused version field
- config.yml: fix web/vendor comment → sources/vendor

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
GnomeZworc 2026-06-07 15:09:02 +02:00
commit 1891ba3d68
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632
9 changed files with 43 additions and 50 deletions

View file

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>two — dashboard</title>
<title>Navigation — Syn exemple</title>
<link rel="icon" type="image/svg+xml" href="./favicon.svg">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
@ -80,16 +80,17 @@
<body>
<header>
<h1>Syn</h1>
<span>web framwork</span>
<span>exemple navigation</span>
<div class="spacer"></div>
</header>
<div class="layout">
<side-nav></side-nav>
<main></main>
</div>
<div id="error"></div>
<script type="module">
window.addEventListener('unhandledrejection', e => {
const el = document.getElementById('error')