Merge pull request #461 from Thunder33345/stray-decoration

Fixed stray `::` when there's no other content to show
This commit is contained in:
Radek Kozieł 2023-06-09 23:33:27 +02:00 committed by GitHub
commit 7926417fc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -13,11 +13,11 @@
<div class="post-meta">
{{ if .Date }}
<time class="post-date">
{{ .Date.Format "2006-01-02" }} ::
{{ .Date.Format "2006-01-02" }}
</time>
{{ end }}
{{ with .Params.Author }}
<span class="post-author">{{ . }}</span>
:: <span class="post-author">{{ . }}</span>
{{ end }}
</div>

View File

@ -6,14 +6,14 @@
<div class="post-meta">
{{ if .Date }}
<time class="post-date">
{{ .Date.Format "2006-01-02" }} ::
{{ .Date.Format "2006-01-02" }}
{{ if $.Site.Params.showLastUpdated }}
[{{or $.Site.Params.updatedDatePrefix "Updated"}} :: {{ .Lastmod.Format "2006-01-02" }}]
:: [{{or $.Site.Params.updatedDatePrefix "Updated"}} :: {{ .Lastmod.Format "2006-01-02" }}]
{{ end }}
</time>
{{ end }}
{{ with .Params.Author }}
<span class="post-author">{{ . }}</span>
<span class="post-author"> :: {{ . }}</span>
{{ end }}
{{ if and (.Param "readingTime") (eq (.Param "readingTime") true) }}
<span class="post-reading-time">:: {{ .ReadingTime }} {{ $.Site.Params.minuteReadingTime | default "min read" }} ({{ .WordCount }} {{ $.Site.Params.words | default "words" }})</span>