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

12
ui/general.html Normal file
View file

@ -0,0 +1,12 @@
{{ define "general-html" }}
<link rel="stylesheet" href="/public/css/general.css">
<link rel="stylesheet" href="/public/css/fonts.css">
<link rel="stylesheet" href="/public/css/header.css">
<link rel="stylesheet" href="/public/css/footer.css">
<script>
function onToggleNav() {
var menu = document.querySelector(".headerMenuMobile");
menu.classList.toggle('nav-is-active');
}
</script>
{{ end }}