blog/layouts/_default/single.html
2026-03-18 20:32:25 +00:00

18 lines
411 B
HTML

{{ define "main" }}
<article class="post">
<header>
<h1>{{ .Title }}</h1>
<time>{{ .Date.Format "Jan 2, 2006" }}</time>
{{ with .Params.tags }}
<div class="tags">
{{ range . }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
</div>
{{ end }}
</header>
<div class="content">
{{ .Content }}
</div>
</article>
{{ end }}