mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-16 09:17:03 +01:00
Alan Orth
d6328c34df
I had only added these for accessibility, but after some research it seems that assistive technologies don't use these.
9 lines
550 B
HTML
9 lines
550 B
HTML
<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 .Site.Params.date_format }}</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 -->
|