Skip to content

Commit

Permalink
Fix W3 validator warning: Section lacks heading for home_info (#857)
Browse files Browse the repository at this point in the history
Use `div` instead of `section` element, because already an `article` element.
  • Loading branch information
adityatelange authored Apr 19, 2022
1 parent c6e9568 commit 4ef7903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layouts/partials/home_info.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<header class="entry-header">
<h1>{{ .Title | markdownify }}</h1>
</header>
<section class="entry-content">
<div class="entry-content">
<p>{{ .Content | markdownify }}</p>
</section>
</div>
<footer class="entry-footer">
{{ partial "social_icons.html" site.Params.socialIcons }}
</footer>
Expand Down

0 comments on commit 4ef7903

Please sign in to comment.