21 lines
628 B
HTML
21 lines
628 B
HTML
{{ define "main" }}
|
||
<h1>{{ .Title }}</h1>
|
||
|
||
<p id="publication-information">Publié le {{ .PublishDate }}
|
||
{{ 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: */}}
|