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

45 lines
1.4 KiB
HTML
Raw Normal View History

2019-09-20 16:11:12 +00:00
{{ define "main" }}
2020-05-09 07:19:04 +00:00
<header>
<h1>{{ .Title }}</h1>
<div class="post__meta">
<!-- List the author(s) of the article. -->
{{- with .Params.author }}
<p class="author">{{ i18n "published_by" }}: {{ range . }}{{ . }}; {{ end }}</p>
{{- end }}
<!-- Publication date. -->
<p class="created-date">{{ i18n "published_on" }}: <date datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</date></p>
<!-- Modification date (will only appear if the publication date is less than the modified date.) -->
{{- if ne .Date .Lastmod }}
<p class="updated-date">{{ i18n "updated_on" }}: <date datetime="{{ .Lastmod.Format "2006-01-02" }}">{{ .Lastmod.Format "2006-01-02" }}</date></p>
{{- end }}
<!-- Link the translated versions if the article has at least one translated page. -->
{{- if .IsTranslated }}
<p>
{{- i18n "available_translations" }}:
{{ range .Translations }}
<a href="{{ .Permalink }}">{{ with .Language.LanguageName }}{{ . }}{{ else }}{{ .Lang }}{{ end }}</a>
{{- end }}
</p>
{{- end }}
</div>
</header>
2019-09-20 16:11:12 +00:00
<hr>
2020-05-09 07:19:04 +00:00
{{ $is_toc := cond (ne .Params.toc nil) .Params.toc $.Site.Params.toc }}
{{ if $is_toc }}
{{ .TableOfContents }}
{{ end }}
<!-- The article content. -->
2019-09-20 16:11:12 +00:00
<article>
{{ .Content }}
</article>
2020-05-09 07:19:04 +00:00
{{ end }}