Only show aside data if present
People may not always define description, author, and date in their front matter. This change skips adding each field to the aside if it is missing.
This commit is contained in:
parent
1e6ebdbb52
commit
25c894d51c
|
@ -9,6 +9,11 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{define "aside" }}
|
{{define "aside" }}
|
||||||
<p>{{ .Params.description }}</p>
|
{{ if .Params.description }}<p>{{ .Params.description }}</p>{{ end }}
|
||||||
<p>By {{ .Params.author }}, {{ .Date.Format "2 January 2006" }}</p>
|
{{ if or (.Params.author) (.Params.date) }}
|
||||||
|
<p>
|
||||||
|
{{ if .Params.author }}By {{ .Params.author }}{{ if .Date }}, {{ end }}{{ end }}
|
||||||
|
{{ if .Date }}{{ .Date.Format "2 January 2006" }}{{ end }}
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in New Issue