Ajouter CSS pour header et pages principales #75

Merged
vlbeaudoin merged 10 commits from css-general into main 2023-07-25 14:18:16 -04:00
3 changed files with 4 additions and 4 deletions
Showing only changes of commit 797ae51899 - Show all commits

View file

@ -8,7 +8,7 @@
</head> </head>
<body> <body>
{{ template "header-html" }} {{ template "header-html" }}
<h1 class="titre1Page">Admin</h1> <h1 class="heading1">Admin</h1>
<ul> <ul>
<li><a href="/admin/documents/upload">Ajout de document</a></li> <li><a href="/admin/documents/upload">Ajout de document</a></li>
</ul> </ul>

View file

@ -8,11 +8,11 @@
</head> </head>
<body> <body>
{{ template "header-html" }} {{ template "header-html" }}
<h1 class="titre1Page">Documentation</h1> <h1 class="heading1">Documentation</h1>
<p> <p>
{{ range . }} {{ range . }}
{{ $bucket_name := .Name }} {{ $bucket_name := .Name }}
<h2 class="titre2Page">{{ $bucket_name }}</h2> <h2 class="heading2">{{ $bucket_name }}</h2>
<ul> <ul>
{{ range .Documents }} {{ range .Documents }}

View file

@ -8,7 +8,7 @@
</head> </head>
<body> <body>
{{ template "header-html" }} {{ template "header-html" }}
<h1 class="titre1Page">Formulaires</h1> <h1 class="heading1">Formulaires</h1>
</body> </body>
</html> </html>
{{ end }} {{ end }}