mirror of
				https://github.com/adityatelange/hugo-PaperMod.git
				synced 2025-11-04 10:22:44 +01:00 
			
		
		
		
	Currenty supports 2 vals Title and Content
Great for short intro for bloggers
can be enabled by using `Params.homeInfoParams`
    homeInfoParams:
      enabled: true
      Title: Hi there 👋
      Content: This is Content !! Can be Info, links, social-icons...
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			276 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			276 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ with $.Site.Params.homeInfoParams }}
 | 
						|
<article class="first-entry">
 | 
						|
    <header class="entry-header">
 | 
						|
        <h2>{{ .Title }}</h2>
 | 
						|
    </header>
 | 
						|
    <section class="entry-content">
 | 
						|
        <p>{{ .Content | plainify | htmlUnescape }}...</p>
 | 
						|
    </section>
 | 
						|
</article>
 | 
						|
{{end}} |