mirror of
https://github.com/foo-dogsquared/hugo-theme-contentful.git
synced 2025-03-14 18:18:59 +00:00
20 lines
427 B
HTML
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 }}
|