Merge branch 'master' into a11y-fixes

This commit is contained in:
Radek Kozieł
2022-10-22 11:37:43 +02:00
committed by GitHub
4 changed files with 21 additions and 11 deletions

View File

@ -11,9 +11,11 @@
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</h1>
<div class="post-meta">
<time class="post-date">
{{ .Date.Format "2006-01-02" }}
</time>
{{- with .Date }}
<time class="post-date">
{{ .Format "2006-01-02" }}
</time>
{{- end }}
{{ with .Params.Author }}
<span class="post-author">:: {{ . }}</span>
{{ end }}
@ -38,7 +40,7 @@
{{ else if .Description }}
{{ .Description | markdownify }}
{{ else }}
{{ .Summary | markdownify }}
{{ .Summary }}
{{ end }}
</div>