-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (67 loc) · 3.21 KB
/
Copy pathindex.html
File metadata and controls
70 lines (67 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BU Blueprint</title>
<link rel="stylesheet" href="src/styles.css">
</head>
<body>
<aside id="sidebar">
<div id="sidebar-titolo">
BU Blueprint
<small>ipotesi → materiali → landing → test → decisione</small>
</div>
<ul id="sidebar-elenco"></ul>
<div id="sidebar-azioni">
<button type="button" id="bottone-nuova-bu" class="pulsante pulsante--primario">+ Nuova business unit</button>
<button type="button" id="bottone-esporta-backup" class="pulsante pulsante--secondario">Esporta backup JSON</button>
<button type="button" id="bottone-ripristina-backup" class="pulsante pulsante--secondario">Ripristina backup JSON</button>
<input type="file" id="input-ripristina-backup" accept="application/json,.json" style="display:none">
<div id="cartella-sezione">
<div id="cartella-stato" class="cartella-stato">Dati locali in questo browser</div>
<button type="button" id="bottone-aggiorna-cartella" class="pulsante pulsante--secondario">Aggiorna da GitHub</button>
<div class="token-riga">
<input type="password" id="input-token-github" class="token-input" placeholder="Token GitHub (per salvare)">
<button type="button" id="bottone-token" class="pulsante pulsante--secondario">Salva token</button>
</div>
<div class="avviso-compatibilita">La lettura è sempre condivisa (repo pubblico). Per salvare/creare/eliminare serve un tuo Personal Access Token GitHub (repo scope, permesso di scrittura su questo repository) — resta solo in questo browser.</div>
</div>
<div id="sidebar-riferimenti">
<a href="docs/vademecum-nuova-bu.html" target="_blank" rel="noopener" class="pulsante pulsante--secondario">Vademecum operativo →</a>
</div>
</div>
<div id="indicatore-salvataggio"></div>
</aside>
<main id="main">
<header id="bu-header"></header>
<nav id="tabs"></nav>
<div id="vista-container"></div>
</main>
<script src="src/schema.js"></script>
<script src="src/store.js"></script>
<script src="src/cartella.js"></script>
<script src="src/render.js"></script>
<script src="src/markdown.js"></script>
<script src="src/prompt-design.js"></script>
<script src="src/gen/_registry.js"></script>
<script src="src/gen/01-bu-one-page.js"></script>
<script src="src/gen/02-problem-statement.js"></script>
<script src="src/gen/03-icp.js"></script>
<script src="src/gen/04-criteri-prospect.js"></script>
<script src="src/gen/05-proposta-valore.js"></script>
<script src="src/gen/06-offerta-pilota.js"></script>
<script src="src/gen/07-demo-brief.js"></script>
<script src="src/gen/08-landing.js"></script>
<script src="src/gen/09-presentazione-commerciale.js"></script>
<script src="src/gen/10-script-discovery-call.js"></script>
<script src="src/gen/11-template-proposta-economica.js"></script>
<script src="src/gen/12-pipeline-commerciale.js"></script>
<script src="src/gen/13-dashboard-kpi.js"></script>
<script src="src/gen/14-criteri-decisione.js"></script>
<script src="src/gen/15-swot.js"></script>
<script src="src/gen/16-dimensionamento.js"></script>
<script src="src/ui.js"></script>
<script src="src/app.js"></script>
</body>
</html>