forked from StimGlb/technodocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_dev.html
More file actions
79 lines (72 loc) · 3.15 KB
/
_dev.html
File metadata and controls
79 lines (72 loc) · 3.15 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
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TechnoDocs - Index Dev</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, sans-serif; background: #0f172a; color: #e2e8f0; padding: 2rem; min-height: 100vh; }
h1 { color: #6366f1; margin-bottom: 0.5rem; }
.subtitle { color: #94a3b8; margin-bottom: 2rem; font-size: 0.875rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.section { background: #1e293b; border-radius: 0.5rem; padding: 1rem; }
.section h2 { color: #38bdf8; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; border-bottom: 1px solid #334155; padding-bottom: 0.5rem; }
.section ul { list-style: none; }
.section li { margin: 0.5rem 0; }
.section a { color: #a5b4fc; text-decoration: none; display: block; padding: 0.375rem 0.5rem; border-radius: 0.25rem; transition: background 0.15s; }
.section a:hover { background: #334155; color: #e0e7ff; }
.tag { font-size: 0.625rem; background: #475569; color: #cbd5e1; padding: 0.125rem 0.375rem; border-radius: 9999px; margin-left: 0.5rem; vertical-align: middle; }
</style>
</head>
<body>
<h1>TechnoDocs Dev Index</h1>
<p class="subtitle">Accès rapide aux pages non connectées</p>
<div class="grid">
<div class="section">
<h2>Cours</h2>
<ul>
<li><a href="/src/pages/cours/amelioration-objet.html">Amelioration Objet</a></li>
<li><a href="/src/pages/cours/cours-template.html">Template Cours <span class="tag">template</span></a></li>
</ul>
</div>
<div class="section">
<h2>Corrections</h2>
<ul>
<li><a href="/src/pages/corrections/fiches_activites.html">Fiches Activites</a></li>
<li><a href="/src/pages/corrections/correction-impression3d.html">Correction Impression 3D</a></li>
<li><a href="/src/pages/corrections/correction-reparabilite.html">Correction Reparabilite</a></li>
</ul>
</div>
<div class="section">
<h2>Flashcards</h2>
<ul>
<li><a href="/src/pages/flashcards/flashcards.html">Index Flashcards</a></li>
<li><a href="/src/pages/flashcards/modelisation3d.html">Modelisation 3D</a></li>
<li><a href="/src/pages/flashcards/reparabilite.html">Reparabilite</a></li>
</ul>
</div>
<div class="section">
<h2>Outils</h2>
<ul>
<li><a href="/src/pages/outils/tinkercad-classes.html">Tinkercad Classes</a></li>
</ul>
</div>
<div class="section">
<h2>Projets</h2>
<ul>
<li><a href="/src/pages/projets/amelioration-objet-technique.html">Amelioration Objet Technique</a></li>
</ul>
</div>
<div class="section">
<h2>Templates</h2>
<ul>
<li><a href="/src/pages/md-template.html">MD Template <span class="tag">template</span></a></li>
</ul>
</div>
</div>
<p style="margin-top: 2rem; color: #64748b; font-size: 0.75rem;">
<a href="/index.html" style="color: #6366f1;">Retour accueil</a>
</p>
</body>
</html>