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>
<body>
{{ template "header-html" }}
<h1 class="titre1Page">Admin</h1>
<h1 class="heading1">Admin</h1>
<ul>
<li><a href="/admin/documents/upload">Ajout de document</a></li>
</ul>

View file

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

View file

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