Déplacer css general vers general.css

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.
This commit is contained in:
Victor Lacasse-Beaudoin 2023-03-24 20:00:55 -04:00
parent 27e02c3a8e
commit a7334f4e0f
4 changed files with 7 additions and 3 deletions

3
public/css/general.css Normal file
View file

@ -0,0 +1,3 @@
h1 {
text-align: center;
}

View file

@ -1,3 +0,0 @@
h1 {
text-align: center;
}

View file

@ -0,0 +1,3 @@
{{ define "general-html" }}
<link rel="stylesheet" href="static/general.css">
{{ end }}

View file

@ -4,6 +4,7 @@
<head>
<meta charset="utf-8">
<title>AGECEM</title>
{{ template "general-html" }}
<link rel="stylesheet" href="static/index.css">
</head>
<body>