Fix conditional rendering for post metadata

You would think this is something like this is already in the theme but
it turns out it isn't. This should fix pages that are primarily
non-content (i.e., about pages, contact).
This commit is contained in:
Gabriel Arazas 2023-02-27 16:46:11 +08:00
parent 11c0a312d9
commit 044a9482a7
2 changed files with 67 additions and 64 deletions

View File

@ -23,6 +23,7 @@
</article>
</main>
{{ if or (or .PublishDate .Lastmod) .IsTranslated }}
<hr aria-hidden="true"/>
<div class="post__meta--single" aria-hidden="true">
<!-- List the author(s) of the article. -->
@ -55,6 +56,7 @@
<p data-content-translations="{{ jsonify $langs }}">{{ i18n "available_translations" }}: {{ delimit $lang_links "," (printf " %s " (i18n "and")) }}</p>
{{- end }}
</div>
{{ end }}
</div>
{{ end }}

View File

@ -1,10 +1,10 @@
{{- /*
The component where it will display the metadata of the post.
This is used on list templates but feel free to change that.
*/ -}}
{{- $RFC3339 := "2006-01-02T15:04:05Z07:00" }}
<div class="list post__meta" aria-hidden="true">
{{- if ne (.PublishDate.Format "2006") "0001" -}}
{{- if or .PublishDate .Lastmod }}
{{- $RFC3339 := "2006-01-02T15:04:05Z07:00" }}
<div class="list post__meta" aria-hidden="true">
{{- if .PublishDate -}}
<span>
{{ partial "components/heroicon.html" "calendar" }}
<time datetime="{{ .PublishDate.Format $RFC3339 }}" title="{{ i18n "published_on" }}" style="margin-left: 0.5em;">
@ -13,7 +13,7 @@
</span>
{{- end }}
{{- if and .GitInfo (ne (.PublishDate.Format "2006-01-02") (.Lastmod.Format "2006-01-02")) }}
{{- if ne (.PublishDate.Format "2006-01-02") (.Lastmod.Format "2006-01-02") }}
<span>
{{ partial "components/heroicon.html" "arrow-path" }}
<time datetime="{{ .Lastmod.Format $RFC3339 }}" title="{{ i18n "updated_on" }}" style="margin-left: 0.5em;">
@ -23,7 +23,7 @@
{{- end }}
{{- /* The authors are appended with 'et al' if there's more than one author in the map. */ -}}
{{ with .Params.author }}
{{- with .Params.author }}
{{- $names := slice }}
{{- range . }}{{ $names = $names | append .name }}{{ end }}
{{- $author := index (first 1 $names) 0 }}
@ -33,5 +33,6 @@
{{ $author }}{{ if ge (len .) 2 }}, et al.{{ end }}
</span>
</span>
{{ end }}
</div>
{{- end }}
</div>
{{- end }}