mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2025-06-04 08:29:47 -04:00
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:
parent
c6e9568c12
commit
4ef79036c5
1 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue