all repos — blog @ d27d5aea69a84740e1d88e94acb27227f47b772a

Code and content for 5ika.ch

layouts/posts/single.html (view raw)

 1{{ define "main" }}
 2    <h1>{{ .Title }}</h1>
 3    {{ .Content }}
 4   
 5    {{ with .PrevInSection }}
 6        {{ if .RelPermalink }}
 7            <hr/>
 8            <br/>
 9            Publication précédente: <a href="{{ .RelPermalink }}">{{ .LinkTitle }} <span class="date">{{ .Date | time.Format "02.01.06" }}</span></a>
10        {{ end }}
11    {{ end }}
12  
13{{ end }}