talas-group/talas-wiki/templates/home.html
senke 66471934af Initial commit: Talas Group project management & documentation
Knowledge base of ~80+ markdown files across 14 domains (00-13),
Logseq graph, hardware design files (KiCAD), infrastructure configs,
and talas-wiki static site.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 20:10:41 +02:00

41 lines
1.2 KiB
HTML

{{define "title"}}Talas Wiki — Accueil{{end}}
{{define "content"}}
<div class="breadcrumb">/</div>
<div class="ascii-art">
_(_)_
(_)@(_)
(_)\
|/
\|
</div>
<h1>Talas Group — Codex</h1>
<p class="subtitle">Base de connaissances du projet Talas. {{len .Domains}} domaines, {{len .RecentPages}} pages modifiees recemment.</p>
<div class="domain-grid">
{{range .Domains}}
<a href="/wiki/{{encodeURL .FullDir}}" class="domain-card" style="border-left: 3px solid {{.Color}}">
<span class="domain-num">{{.Number}}</span>
<span class="domain-name">{{.Name}}</span>
<span class="domain-count">{{.Count}} docs</span>
{{if .Desc}}<span class="domain-desc">{{.Desc}}</span>{{end}}
</a>
{{end}}
</div>
{{if .RecentPages}}
<div style="margin-top:32px">
<h2>Modifications recentes</h2>
<div class="dash-list">
{{range .RecentPages}}
<a href="/wiki/{{encodeURL .URLPath}}" class="dash-item">
<span class="dash-item-title">{{.Title}}</span>
<span class="dash-item-meta">{{formatDateShort .ModTime}} · {{.Domain}}</span>
</a>
{{end}}
</div>
</div>
{{end}}
{{end}}