mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-31 03:45:24 +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:
		| @@ -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> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Aditya Telange
					Aditya Telange