post-date.html 430 B

1234567891011
  1. {{ $dateFormat := default "Jan 2, 2006" (index .Site.Params "date_format") }}
  2. {{ $author := .Params.author | default .Site.Params.author }}
  3. <div class="blog-post-date text-secondary">
  4. {{ if not .Date.IsZero }}
  5. <time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format $dateFormat }}</time>
  6. {{ end }}
  7. {{ if $author }}
  8. {{ i18n "by" }} <span rel="author">{{ $author }}</span>
  9. {{ end }}
  10. </div>