2019-07-30 21:32:26 +00:00
|
|
|
{{ define "main" }}
|
2016-10-14 20:41:10 +00:00
|
|
|
<main>
|
|
|
|
<article>
|
|
|
|
<h1>{{ .Title }}</h1>
|
2020-08-04 11:33:15 +00:00
|
|
|
<b><time>{{ .Date.Format (default "2006-01-02 15:04:05" .Site.Params.dateFmt) }}</time></b>
|
2020-05-28 09:47:41 +00:00
|
|
|
{{ range .Params.tags }}
|
|
|
|
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
|
|
|
|
{{ end }}
|
|
|
|
|
2016-10-14 20:41:10 +00:00
|
|
|
<div>
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</main>
|
2020-05-26 22:34:21 +00:00
|
|
|
{{ partial "sidebar.html" . }}
|
2019-07-30 21:32:26 +00:00
|
|
|
{{ end }}
|