modif class h1/h2 admin documentation formulaires

This commit is contained in:
Alexel 2023-07-25 13:15:33 -04:00
parent cb18a570f2
commit 797ae51899
3 changed files with 4 additions and 4 deletions

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 }}