 8a0915bb81
			
		
	
	
		8a0915bb81
		
	
	
	
	
		
			
			use data instead of if else in partial, this makes iterating and display all the icons possible
		
			
				
	
	
		
			14 lines
		
	
	
		
			440 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			440 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">
 | |
|         <p>{{ .Content | markdownify }}</p>
 | |
|     </section>
 | |
|     <footer class="entry-footer">
 | |
|         {{ partial "social_icons.html" (dict "icons" site.Params.socialIcons "svg" $.Site.Data.svg) }}
 | |
|     </footer>
 | |
| </article>
 | |
| {{- end -}}
 |