Skip to content

Commit

Permalink
Fix W3 validator warning: Section lacks heading for home_info (adit…
Browse files Browse the repository at this point in the history
…yatelange#857)

Use `div` instead of `section` element, because already an `article` element.
  • Loading branch information
adityatelange authored and romainx committed Jul 26, 2022
1 parent 22afbca commit 24a3af7
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 24a3af7

Please sign in to comment.