16 lines
399 B
HTML
16 lines
399 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<article>
|
|
<h1>{{ .Title }}</h1>
|
|
<div>Publié le <b><time>{{ .Date | time.Format ":date_full" }}</time></b></div>
|
|
{{ range .Params.tags }}
|
|
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
|
|
<div>
|
|
{{ .Content }}
|
|
</div>
|
|
</article>
|
|
</main>
|
|
{{ partial "sidebar.html" . }}
|
|
{{ end }}
|