changement structure annuaires avec un thème particulier

This commit is contained in:
pikselkraft 2020-06-16 12:14:24 +02:00 committed by Simon C
parent 614e9669a7
commit c9d2849419
4 changed files with 34 additions and 5 deletions

View File

@ -1,4 +1,19 @@
.container
padding: 1rem
//padding: 1rem
margin: 0 auto
width: 90%
main
padding-bottom: 2*$space
padding-bottom: 2*$space
@media screen and (min-width: 60em)
.container
width: 85%
/*************/
/* ANNUAIRES */
/*************/
@media screen and (min-width: 60em)
.annuaires
columns: 3

View File

@ -6,9 +6,7 @@ menu:
weight: 10
---
# Intro site
A-faire
## Notre manifesto
-----

View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}">
{{ partial "head.html" . }}
<body>
{{ partial "header.html" . }}
<main role="main" class="container__annuaires" id="content">
{{ define "main" }}
<div class="annuaires">
{{ .Content }}
</div>
{{ end }}
</main>
{{ partial "footer.html" . }}
{{ partial "js.html" . }}
</body>
</html>