From 0738a851e65c9bb7e85dd40da9faa5f3b767fe57 Mon Sep 17 00:00:00 2001 From: Victor Lacasse-Beaudoin Date: Tue, 12 Dec 2023 17:34:43 -0500 Subject: [PATCH] rename!: templates `gohtml` -> `html` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit L'extension `gohtml` était pratique pour dénoter que le fichier était un template et n'allait pas être exposé directement avant manipulations, par contre ça rendait le formattage par défaut plus complexe. Les fichier sont maintenant simplement `*.html`, et il est clair que ce sont des templates car ils sont de toute façon dans un dossier appelé `templates/html/`, ce qui devrait être assez clair. BREAKING: fichiers dans `templates/html/` doivent avoir l'extension `.html` --- cmd/server.go | 2 +- templates/html/{admin-upload.gohtml => admin-upload.html} | 0 templates/html/{admin.gohtml => admin.html} | 0 templates/html/{documentation.gohtml => documentation.html} | 0 templates/html/{formulaires.gohtml => formulaires.html} | 0 templates/html/{general.gohtml => general.html} | 0 templates/html/{header.gohtml => header.html} | 0 templates/html/{index.gohtml => index.html} | 0 templates/html/old/{a-propos.gohtml => a-propos.html} | 0 templates/html/old/{actualite.gohtml => actualite.html} | 0 templates/html/{snackbar.gohtml => snackbar.html} | 0 templates/html/{vie-etudiante.gohtml => vie-etudiante.html} | 0 templates/templates.go | 4 ++-- 13 files changed, 3 insertions(+), 3 deletions(-) rename templates/html/{admin-upload.gohtml => admin-upload.html} (100%) rename templates/html/{admin.gohtml => admin.html} (100%) rename templates/html/{documentation.gohtml => documentation.html} (100%) rename templates/html/{formulaires.gohtml => formulaires.html} (100%) rename templates/html/{general.gohtml => general.html} (100%) rename templates/html/{header.gohtml => header.html} (100%) rename templates/html/{index.gohtml => index.html} (100%) rename templates/html/old/{a-propos.gohtml => a-propos.html} (100%) rename templates/html/old/{actualite.gohtml => actualite.html} (100%) rename templates/html/{snackbar.gohtml => snackbar.html} (100%) rename templates/html/{vie-etudiante.gohtml => vie-etudiante.html} (100%) diff --git a/cmd/server.go b/cmd/server.go index a5a9fbf..5f61cd0 100644 --- a/cmd/server.go +++ b/cmd/server.go @@ -146,7 +146,7 @@ func RunServer() { e := echo.New() t := &Template{ - templates: template.Must(template.ParseFS(templatesFS, "html/*.gohtml")), + templates: template.Must(template.ParseFS(templatesFS, "html/*.html")), } e.Renderer = t diff --git a/templates/html/admin-upload.gohtml b/templates/html/admin-upload.html similarity index 100% rename from templates/html/admin-upload.gohtml rename to templates/html/admin-upload.html diff --git a/templates/html/admin.gohtml b/templates/html/admin.html similarity index 100% rename from templates/html/admin.gohtml rename to templates/html/admin.html diff --git a/templates/html/documentation.gohtml b/templates/html/documentation.html similarity index 100% rename from templates/html/documentation.gohtml rename to templates/html/documentation.html diff --git a/templates/html/formulaires.gohtml b/templates/html/formulaires.html similarity index 100% rename from templates/html/formulaires.gohtml rename to templates/html/formulaires.html diff --git a/templates/html/general.gohtml b/templates/html/general.html similarity index 100% rename from templates/html/general.gohtml rename to templates/html/general.html diff --git a/templates/html/header.gohtml b/templates/html/header.html similarity index 100% rename from templates/html/header.gohtml rename to templates/html/header.html diff --git a/templates/html/index.gohtml b/templates/html/index.html similarity index 100% rename from templates/html/index.gohtml rename to templates/html/index.html diff --git a/templates/html/old/a-propos.gohtml b/templates/html/old/a-propos.html similarity index 100% rename from templates/html/old/a-propos.gohtml rename to templates/html/old/a-propos.html diff --git a/templates/html/old/actualite.gohtml b/templates/html/old/actualite.html similarity index 100% rename from templates/html/old/actualite.gohtml rename to templates/html/old/actualite.html diff --git a/templates/html/snackbar.gohtml b/templates/html/snackbar.html similarity index 100% rename from templates/html/snackbar.gohtml rename to templates/html/snackbar.html diff --git a/templates/html/vie-etudiante.gohtml b/templates/html/vie-etudiante.html similarity index 100% rename from templates/html/vie-etudiante.gohtml rename to templates/html/vie-etudiante.html diff --git a/templates/templates.go b/templates/templates.go index 89dc221..79f292c 100644 --- a/templates/templates.go +++ b/templates/templates.go @@ -1,5 +1,5 @@ /* -Package templates contient les fichiers gohtml à templater par l'application. +Package templates contient les fichiers html à templater par l'application. Le contenu sera embedded dans le fichier binaire, dans le but de bundle les dépendances avec l'application, simplifiant son déploiement. @@ -10,7 +10,7 @@ package templates import "embed" -//go:embed html/*.gohtml +//go:embed html/*.html var templatesFS embed.FS func GetTemplatesFS() embed.FS { -- 2.45.2