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">
<h1>{{ .Title | markdownify }}</h1>
</header>
<section class="entry-content">
<p>{{ .Content | markdownify }}</p>
</section>
<div class="entry-content">
{{ .Content | markdownify }}
</div>
<footer class="entry-footer">
{{ partial "social_icons.html" site.Params.socialIcons }}
</footer>