hugo-theme-contentful/layouts/_default/single.html

20 lines
427 B
HTML
Raw Normal View History

2019-09-20 16:11:12 +00:00
{{ 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 }}