14 lines
		
	
	
		
			487 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			487 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 "Email" site.Params.Email) -}}
 | |
|   </footer>
 | |
| </article>
 | |
| {{- end -}}
 | 
