17 lines
389 B
HTML
17 lines
389 B
HTML
{{ define "main" }}
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ .Content }}
|
|
|
|
{{ range .Pages.ByDate.Reverse }}
|
|
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
|
|
|
|
{{ .Summary }}
|
|
|
|
{{ if .Truncated }}
|
|
<a href="{{ .RelPermalink }}">Lire plus sur « {{ .Title }} »</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{/* vim: set tw=80 ts=2 sw=2 sts=2 ft=gohtmltmpl: */}}
|