mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-24 21:20:17 +01:00
layouts/_default/summary.html: Fix W3C validation error
The validator[0] says: Element nobr not allowed as child of element a in this context. ... so I'll just remove it. [0] https://validator.w3.org
This commit is contained in:
parent
5ab29ec867
commit
8c4b423173
@ -4,5 +4,5 @@
|
|||||||
<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>
|
<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>
|
</header>
|
||||||
{{ .Summary }}
|
{{ .Summary }}
|
||||||
<a href='{{ .Permalink }}'><nobr>Read more →</nobr></a>
|
<a href='{{ .Permalink }}'>Read more →</a>
|
||||||
</article> <!-- /.blog-post -->
|
</article> <!-- /.blog-post -->
|
||||||
|
Loading…
Reference in New Issue
Block a user