Victor Lacasse-Beaudoin
1022dd05db
Déplacer embed/ vers public/ Ajouter public/js et public/scss Ajouter templating pour public/html/*.gohtml Ajouter --build à procédure dans README.md Déplacer contenu de index.html vers template `index-html` Ajouter middleware RemoveTrailingSlash Déplacer anonymous function de route `/` vers handler `handleIndex`
15 lines
302 B
Text
15 lines
302 B
Text
{{ define "index-html" }}
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>AGECEM</title>
|
|
<style>
|
|
body {text-align: center;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Association Générale Étudiante du Cégep Édouard-Montpetit</h1>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|