Files
alahouze 4087a8a4ff
ci/woodpecker/push/woodpecker Pipeline was successful
Correction de l'indentation.
2026-03-25 21:42:29 +01:00

24 lines
755 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{ define "main" }}
<h1>{{ .Title }}</h1>
<p id="publication-information">
Publié le {{ (or .PublishDate .LastModified) | time.Format ":date_full" }}
à {{ (or .PublishDate .LastModified) | time.Format ":time_short" }}
{{ with or (.Param "author") (.Site.Param "author") }}{{ . }}{{ end }}
</p>
{{ with .ReadingTime }}
<p id="reading-time">Temps de lecture estimé : {{ . }} minute(s).</p>
{{ end }}
{{/* Pourquoi 32, bah pourquoi pas ? */}}
{{/* Non, en vrai ça semble être le taille d'une table des matières vide.*/}}
{{ if gt (len .TableOfContents) 32}}
<p>Table des matières :</p>
{{ .TableOfContents }}
{{ end }}
{{ .Content }}
{{ end }}
{{/* vim: set tw=80 ts=2 sw=2 sts=2 ft=gohtmltmpl: */}}