14 lines
		
	
	
		
			485 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			485 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{- with site.Params.homeInfoParams }}
 | |
| <article class="first-entry home-info">
 | |
|     <header class="entry-header">
 | |
|         <h1>{{ .Title | markdownify }}</h1>
 | |
|     </header>
 | |
|     <section class="entry-content">
 | |
|         {{- trim .Content "\n" | markdownify -}}
 | |
|     </section>
 | |
|     <footer class="entry-footer">
 | |
|         {{- partial "social_icons.html" (dict "icons" site.Params.socialIcons "svg" $.Site.Data.svg "MaskedEmail" site.Params.MaskedEmail) -}}
 | |
|     </footer>
 | |
| </article>
 | |
| {{- end -}}
 | 
