10 lines
247 B
HTML
10 lines
247 B
HTML
{{ define "title" }}{{ .Title }} - {{ .Site.Title }}{{ end }}
|
|
{{ define "main" }}
|
|
<article>
|
|
<h2>{{ .Title }}</h2>
|
|
<time>{{ .Date.Format "2 January 2006" }}</time>
|
|
{{ .Content }}
|
|
</article>
|
|
<a href="/">← Retour</a>
|
|
{{ end }}
|