HOD2018_website/themes/HOD2k18/layouts/_default/single.html
2018-11-03 17:14:07 +01:00

20 行
412 B
HTML

{{ partial "header.html" . }}
<main>
<article>
<h1>{{ .Title }}</h1>
<time>{{ .Date.Format "02.01.2006 15:04" }}</time>
<div>
{{ .Content }}
</div>
<div>
<ul id="tags">
{{ range .Params.tags }}
<li><a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a> </li>
{{ end }}
</ul>
</div>
<div>
</div>
</article>
</main>
{{ partial "footer.html" . }}