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>
|
2022-04-19 23:52:32 +02:00
|
|
|
Publié le <time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Day }} {{ index $.Site.Data.mois (printf "%d" .Date.Month) }} {{ .Date.Year }}</time>{{ if isset .Params "auteur" }} - {{ .Params.auteur }}{{ end }}
|
2020-11-25 18:00:03 +01:00
|
|
|
</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 }}
|
2020-12-05 10:02:05 +01:00
|
|
|
Les actualités suivantes et précédentes
|
2020-11-25 18:00:03 +01:00
|
|
|
{{ else if .NextInSection }}
|
2020-12-05 10:02:05 +01:00
|
|
|
L'actualité précédente
|
2020-11-25 18:00:03 +01:00
|
|
|
{{ else }}
|
2020-12-05 10:02:05 +01:00
|
|
|
L'actualité suivante
|
2020-11-25 18:00:03 +01:00
|
|
|
{{ 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 }}
|