hugo-theme-contentful/layouts/_default/single.html
2019-09-21 00:11:12 +08:00

20 lines
427 B
HTML

{{ define "main" }}
<main>
<h1 class="post-title">{{ .Title }}</h1>
{{ with .Params.author }}<p>{{ . }}</p>{{ end }}
<date datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</date>
{{ if .IsTranslated }}
<div>
{{ i18n "available_translations" }}:
{{ range .Translations }}
<a href="{{ .Permalink }}">{{ .Lang }}</a>
{{ end }}
</div>
{{ end }}
<hr>
<article>
{{ .Content }}
</article>
</main>
{{ end }}