mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-16 17:27:04 +01:00
Alan Orth
cdcae6c8a4
User can override the date format with date_format, but we should have a default in the case that the user hasn't defined it.
11 lines
620 B
HTML
11 lines
620 B
HTML
{{ $dateFormat := default "Mon Jan 2, 2006" (index .Site.Params "date_format") }}
|
|
|
|
<article class="blog-post">
|
|
<header>
|
|
<h2 class="blog-post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2>
|
|
<p class="blog-post-meta"><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format $dateFormat }}</time> by {{ .Params.author | default .Site.Params.author }}{{ if or (.Params.categories) (.Params.tags) }} in {{ partial "meta-terms.html" . }}{{ end }}</p>
|
|
</header>
|
|
{{ .Summary }}
|
|
<a href='{{ .Permalink }}'>{{ i18n "readMore" }} →</a>
|
|
</article> <!-- /.blog-post -->
|