Files

14 lines
356 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>
{{/* 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: */}}