Fix W3 validator warning: No p element in scope but a p end tag seen.

Use `div` instead of `section` element, because already an `article` element.
Remove unnecessary `p` element.
This commit is contained in:
Rotzbua 2022-03-28 20:24:12 +02:00
parent 363756ffee
commit 375a945639
No known key found for this signature in database
GPG Key ID: C69022D529C17845

View File

@ -3,9 +3,9 @@
<header class="entry-header"> <header class="entry-header">
<h1>{{ .Title | markdownify }}</h1> <h1>{{ .Title | markdownify }}</h1>
</header> </header>
<section class="entry-content"> <div class="entry-content">
<p>{{ .Content | markdownify }}</p> {{ .Content | markdownify }}
</section> </div>
<footer class="entry-footer"> <footer class="entry-footer">
{{ partial "social_icons.html" site.Params.socialIcons }} {{ partial "social_icons.html" site.Params.socialIcons }}
</footer> </footer>