17 lines
361 B
Text
17 lines
361 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 class="heading1">Admin</h1>
|
|
<ul>
|
|
<li><a href="/admin/documents/upload">Ajout de document</a></li>
|
|
</ul>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|