2020-11-09 12:36:28 +01:00
|
|
|
{{ define "main" }}
|
|
|
|
<div class="container">
|
|
|
|
<h1>{{ .RenderString .Title }}</h1>
|
2020-11-23 11:31:02 +01:00
|
|
|
<div class="container news md">
|
2020-11-25 18:00:03 +01:00
|
|
|
<small>
|
|
|
|
<time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Day }} {{ index $.Site.Data.mois (printf "%d" .Date.Month) }} {{ .Date.Year }}</time>
|
|
|
|
</small>
|
2020-11-09 12:36:28 +01:00
|
|
|
{{ .Content }}
|
2020-11-25 18:00:03 +01:00
|
|
|
<aside>
|
|
|
|
<hr>
|
|
|
|
<h2>
|
|
|
|
{{ if and .NextInSection .PrevInSection }}
|
|
|
|
Les actualités suivant et précédent
|
|
|
|
{{ else if .NextInSection }}
|
|
|
|
L'actualité précédent
|
|
|
|
{{ else }}
|
|
|
|
L'actualité suivant
|
|
|
|
{{ end }}
|
|
|
|
</h2>
|
|
|
|
{{ with .NextInSection }}
|
|
|
|
{{ .Scratch.Set "big" false }}
|
|
|
|
{{ partial "article-preview.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ with .PrevInSection }}
|
|
|
|
{{ .Scratch.Set "big" false }}
|
|
|
|
{{ partial "article-preview.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
</aside>
|
2020-11-09 12:36:28 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|