mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01: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
@ -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…
Reference in New Issue
Block a user