25 lines
513 B
Text
25 lines
513 B
Text
{{ define "documentation-html" }}
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>AGECEM | Documentation</title>
|
|
{{ template "general-html" }}
|
|
</head>
|
|
<body>
|
|
{{ template "header-html" }}
|
|
<h2>Documentation</h2>
|
|
<p>
|
|
{{ range . }}
|
|
<h3>{{ .Name }}</h3>
|
|
|
|
<ul>
|
|
{{ range .Documents }}
|
|
<li>{{ . }}</li>
|
|
{{ end}}
|
|
</ul>
|
|
{{ end }}
|
|
</p>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|