Victor Lacasse-Beaudoin
a7334f4e0f
Au lieu de mettre `text-align: center;` dans index.css, le déplacer vers general.css pour avoir un endroit où mettre le css général du site.
15 lines
356 B
Text
15 lines
356 B
Text
{{ define "index-html" }}
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>AGECEM</title>
|
|
{{ template "general-html" }}
|
|
<link rel="stylesheet" href="static/index.css">
|
|
</head>
|
|
<body>
|
|
{{ template "header" }}
|
|
<h1>Association Générale Étudiante du Cégep Édouard-Montpetit</h1>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|