Fix W3 validator warning: Section lacks heading for home_info (#857)

Use `div` instead of `section` element, because already an `article` element.
This commit is contained in:
Aditya Telange 2022-04-19 20:34:59 +05:30 committed by GitHub
parent c6e9568c12
commit 4ef79036c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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> <p>{{ .Content | markdownify }}</p>
</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>