You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
712 B
HTML
15 lines
712 B
HTML
{{ $authors := cond (.Param "paige.page.authors.hide" | not) (partial "paige/func-authors.html" .) "" }}
|
|
{{ $authorsclass := .Param "paige.page.authors.class" | default "text-center text-secondary" }}
|
|
{{ $gap := "mb-0" }}
|
|
{{ $date := cond (.Param "paige.page.date.hide" | not) .PublishDate "" }}
|
|
{{ $dateclass := .Param "paige.page.date.class" | default "text-center text-secondary" }}
|
|
|
|
{{ with $authors }}
|
|
<p class="{{ if $date }} {{ $gap }} {{ end }} {{ $authorsclass }}">{{ . }}</p>
|
|
{{ end }}
|
|
{{ if $date }}
|
|
<p class="{{ $dateclass }}">
|
|
<time datetime="{{ $date.Format `2006-01-02` }}">{{ time.Format (.Param "paige.page.date.format" | default ":date_long") $date }}</time>
|
|
</p>
|
|
{{ end }}
|