refactor: déplacer fichiers go source vers pkg/ et cmd/

Déplacer public/ et templates/ vers ui/ et ui/public/

Bump projet à v3, API toujours v1
This commit is contained in:
Victor Lacasse-Beaudoin 2024-09-27 20:25:12 -04:00
parent e46033d4a9
commit 7d4a747774
107 changed files with 68 additions and 107 deletions

23
ui/proces-verbaux.html Normal file
View file

@ -0,0 +1,23 @@
{{ define "procesverbaux-html" }}
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>AGECEM | Procès-Verbaux</title>
{{ template "general-html" }}
<link rel="stylesheet" href="/public/css/proces-verbaux.css">
</head>
<body>
{{ template "header-html" }}
<div class="wrapper">
<h1 class="heading1">Procès-Verbaux</h1>
<p class="procesVerbauxP">Les procès-verbaux des différentes instances de l'AGECEM sont disponibles sur demande
à la permanence au local B-31 ou par courriel à permanence@agecem.org</p>
</div>
{{ template "footer-html" }}
</body>
</html>
{{ end }}