agecem-org/templates/html/admin.gohtml
Victor Lacasse-Beaudoin 2eee1f2fd2 Séparer templates de public/ -> templates/
Séparer embedFS en publicFS et templatesFS
2023-07-04 21:57:13 -04:00

17 lines
344 B
Text

{{ define "admin-html" }}
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>AGECEM</title>
{{ template "general-html" }}
</head>
<body>
{{ template "header-html" }}
<h1>Admin</h1>
<ul>
<li><a href="/admin/documents/upload">Ajout de document</a></li>
</ul>
</body>
</html>
{{ end }}