Files
alexis.lahouze.org/layouts/section.html
T

19 lines
444 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .RegularPagesRecursive.ByDate.Reverse }}
<article>
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{ .Summary }}
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">Lire plus sur &laquo;&nbsp;{{ .Title }}&nbsp;&raquo;</a>
{{ end }}
</article>
{{ end }}
{{ end }}
{{/* vim: set tw=80 ts=2 sw=2 sts=2 ft=gohtmltmpl: */}}