mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2025-05-11 06:56:00 +02:00
archetypes
layouts
_default
baseof.html
list.html
single.html
summary.html
partials
404.html
source
static
.gitignore
LICENSE.txt
README.md
package.json
screenshot@2x.png
theme.toml
The W3C's HTML5 documentation says that header strength (h1–h6) is only important per section, but their validator[0] recommends only using one h1. [0] https://validator.w3.org/
9 lines
446 B
HTML
9 lines
446 B
HTML
<article class="blog-post">
|
|
<header>
|
|
<h2 class="blog-post-title"><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h2>
|
|
<p class="blog-post-meta"><time datetime="{{ .Date }}">{{ .Date.Format .Site.Params.date_format }}</time> by <a href="#">{{ .Params.author | default .Site.Params.author }}</a></p>
|
|
</header>
|
|
{{ .Summary }}
|
|
<a href='{{ .Permalink }}'><nobr>Read more →</nobr></a>
|
|
</article> <!-- /.blog-post -->
|